report.html.DEFAULT.templates.macros.section.steps.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(includeSteps, $keyword, $stepsGroupName, $steps, $status)
#set($stepsId = $counter.next())
#includeBrief($keyword, $status, $stepsGroupName, true)
#foreach($step in $steps)
#includeBrief($step.keyword, $step.status, $step.name, false, $step.duration)
#set($isPassed = $step.status.isPassed())
#includeMessage($step.result.errorMessage, $isPassed)
#if (!$step.rows.isEmpty())
#foreach($row in $step.rows)
#foreach($cell in $row.cells)
$cell
#end
#end
#end
#includeDocString($step.docString)
#includeOutput($utils.outputs($step), $isPassed)
#includeEmbeddings($utils.embeddings($step))
#end
#end
© 2015 - 2025 Weber Informatics LLC | Privacy Policy