net.masterthought.cucumber.generators.FeaturesOverviewPage 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.ReportBuilder;
import net.masterthought.cucumber.ReportResult;
public class FeaturesOverviewPage extends AbstractPage {
public static final String WEB_PAGE = ReportBuilder.HOME_PAGE;
public FeaturesOverviewPage(ReportResult reportResult, Configuration configuration) {
super(reportResult, "overviewFeatures.vm", configuration);
}
@Override
public String getWebPage() {
return WEB_PAGE;
}
@Override
public void prepareReport() {
context.put("all_features", reportResult.getAllFeatures());
context.put("report_summary", reportResult.getFeatureReport());
context.put("classifications", configuration.getClassifications());
context.put("parallel", configuration.isParallelTesting());
}
}