templates.generators.stepsOverview.vm Maven / Gradle / Ivy
#parse("/templates/headers.vm")
#includeTitle("Steps Overview")
#includeNavigation("steps")
#includeBuildInfo()
#includeLead("Steps Statistics", "The following graph shows step statistics for this build. Below list is based on results.
step does not provide information about result then is not listed below.
Additionally @Before and @After are not counted because they are part of the scenarios, not steps.")
#if($all_steps.isEmpty())
You have no features in your cucumber report
#else
Implementation
Occurrences
Duration
Average
Ratio
#foreach($step in $all_steps)
$step.getLocation()
$step.getTotalOccurrences()
$step.getTotalFormattedDuration()
$step.getAverageFormattedDuration()
$step.getPercentageResult()
#end
$all_steps.size()
$all_occurrences
$all_durations
$all_average
Totals
#end
#include("/templates/footer.html")
© 2015 - 2025 Weber Informatics LLC | Privacy Policy