report.html.DEFAULT.templates.macros.section.scenario.vm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cucumber-tools Show documentation
Show all versions of cucumber-tools Show documentation
Tooling set for working with cucumber
The newest version!
#macro(includeScenario, $scenario)
#includeTags($scenario.tags)
#includeDuration($scenario.duration)
#set($scenarioId = $counter.next())
#includeBrief($scenario.type, $scenario.status, $scenario.name, true)
$scenario.description
#includeHooks("Before", $scenario.before, $utils.result($scenario.before).status)
#if ($scenario.backgroundSteps)
#includeSteps("Background steps", $scenario.backgroundName, $scenario.backgroundSteps, $utils.result($scenario.backgroundSteps).status)
#end
#includeSteps("Steps", "", $scenario.steps, $utils.result($scenario.steps).status)
#includeHooks("After", $scenario.after, $utils.result($scenario.after).status)
#end
© 2015 - 2025 Weber Informatics LLC | Privacy Policy