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. It works by generating html from the cucumber json file.
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("parallel", configuration.isParallelTesting());
context.put("feature", feature);
}
}