report.html.DEFAULT.templates.macros.section.hooks.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(includeHooks $keyword, $hooks, $status)
#if(!$hooks.isEmpty())
#set($hookId = $counter.next())
#includeBrief("Hooks", $status, "", true)
#foreach($hook in $hooks)
$keyword
#if ($hook.location)
$hook.location
#end
#includeDuration($hook.duration)
#includeMessage($hook.result.errorMessage, $hook.status.isPassed())
#includeOutput($hook.outputs, $hook.status.isPassed())
#includeEmbeddings($hook.embeddings)
#end
#end
#end
© 2015 - 2025 Weber Informatics LLC | Privacy Policy