All Downloads are FREE. Search and download functionalities are using the official Maven repository.

templates.default.overview.ftlh Maven / Gradle / Ivy

Go to download

The part of the Cucumber Reports library directly responsible for reports generation.

There is a newer version: 1.3.5
Show newest version


${title}


  
    
<#include "pie_chart"> <#include "tables">

Overview Chart

Features StatusScenario Status
<@drawPieChart id="feature_status" width=450 height=300 values=[overallStats.getFeaturesPassed(), overallStats.getFeaturesFailed(), overallStats.getFeaturesUndefined(), overallStats.getFeaturesKnown()] labels=["Passed", "Failed", "Undefined", "Known"] colors=["green", "red", "silver", "gold"] shadowColors=["darkgreen", "darkred", "darkgray", "goldenrod"] pieThickness=20 shift=2 /> <@drawPieChart id="scenario_status" width=450 height=300 values=[overallStats.getScenariosPassed(), overallStats.getScenariosFailed(), overallStats.getScenariosUndefined(), overallStats.getScenariosKnown()] labels=["Passed", "Failed", "Undefined", "Known"] colors=["green", "red", "silver", "gold"] shadowColors=["darkgreen", "darkred", "darkgray", "goldenrod"] pieThickness=20 shift=2 />

Summary

<@drawOverviewStatsTable stats=overallStats />

Features Status

<#list features as feature> <#if feature.featureName?has_content>
Feature Name Status Passed Failed Known Undefined Total Duration
${feature.featureName} ${feature.status} ${feature.stats.scenariosPassed} ${feature.stats.scenariosFailed} ${feature.stats.scenariosKnown} ${feature.stats.scenariosUndefined} ${feature.stats.getScenariosTotal()} ${feature.duration}s

Scenario Status

<#list scenarios as scenario>
Feature Name Scenario Status Passed Failed Known Undefined Total Retries Duration
${scenario.featureName} ${scenario.scenarioName} ${scenario.status} ${scenario.stats.stepsPassed} ${scenario.stats.stepsFailed} ${scenario.stats.stepsKnown} ${scenario.stats.stepsUndefined} ${scenario.stats.getStepsTotal()} ${scenario.retries} ${scenario.duration}s




© 2015 - 2024 Weber Informatics LLC | Privacy Policy