net.masterthought.cucumber.generators.FeatureReportPage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cucumber-reporting Show documentation
Show all versions of cucumber-reporting Show documentation
Provides pretty html reports for Cucumber (Behaviour-Driven Development). It works by generating html from the
cucumber json report formatter. So can be used anywhere a json report is generated. Current use is in the
cucumber jenkins plugin and a maven mojo to generate the same report from mvn command line when running locally.
package net.masterthought.cucumber.generators;
import net.masterthought.cucumber.Configuration;
import net.masterthought.cucumber.ReportResult;
import net.masterthought.cucumber.json.Feature;
public class FeatureReportPage extends AbstractPage {
private final Feature feature;
public FeatureReportPage(ReportResult reportResult, Configuration configuration, Feature feature) {
super(reportResult, "reportFeature.vm", configuration);
this.feature = feature;
}
@Override
public String getWebPage() {
return feature.getReportFileName();
}
@Override
public void prepareReport() {
context.put("feature", feature);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy