templates.default.coverage.ftlh Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cucumber-report-generator Show documentation
Show all versions of cucumber-report-generator Show documentation
The part of the Cucumber Reports library directly responsible for
reports generation.
The newest version!
${title}
<#include "pie_chart">
Overview Chart
Features Status Scenario Status
<@drawPieChart
id="feature_coverage"
width=450 height=300
values=featureStatuses
labels=["Covered", "Not Covered"]
colors=["green", "gold"]
shadowColors=["darkgreen", "GoldenRod"]
pieThickness=20
shift=2 />
<@drawPieChart
id="feature_coverage"
width=450 height=300
values=scenarioStatuses
labels=["Covered", "Not Covered"]
colors=["green", "gold"]
shadowColors=["darkgreen", "GoldenRod"]
pieThickness=20
shift=2 />
Features Status
Feature Name Status Scenarios Tags
Covered Not Covered
<#list features as row>
${row.featureName}
${row.status}
${row.covered}
${row.notCovered}
${row.tags?join(", ")}
#list>
Scenario Status
Feature Name Scenario Status Steps Tags
Covered Not Covered
<#list scenarios as row>
${row.featureName}
${row.scenarioName}
${row.status}
${row.covered}
${row.notCovered}
${row.tags?join(", ")}
#list>