$srm.date
#foreach($feature in $srm.features)
$feature.description
#foreach( $scenario in $feature.scenarios )
#foreach( $scenarioStep in $scenario.steps )

@${scenarioStep.id}
#if($scenarioStep.passed) #elseif($scenarioStep.pending) #elseif($scenarioStep.skipped) #else #end $scenarioStep.description $scenarioStep.duration ms #if($scenarioStep.passed) $scenarioStep.description $scenarioStep.duration ms Show error
$scenarioStep.result
#end

#end
#end
#end #if(!${srm.unitTests.isEmpty()})
#foreach( $ut in $srm.unitTests )

@${ut.id}
#if(${ut.passed}) $ut.name $ut.duration ms #else $ut.name $ut.duration ms Show error
$ut.error
#end

#end
#end