FitNesseRoot.files.templates.suiteXML.vm Maven / Gradle / Ivy
$formatter.getFitNesseVersion()
$formatter.getRootPageName()
#foreach ($reference in $formatter.getPageHistoryReferences())
#set($executionReport = $formatter.getTestExecutionReport($reference))
#set($result = $executionReport.getResults().get(0))
$result.Right
$result.Wrong
$result.Ignores
$result.Exceptions
$result.RelativePageName
#if($result.Tags)
$result.Tags
#end
#if($result.Tables.size() > 0)
#foreach($table in $result.Tables)
$table.Name
#foreach($row in $table)
#foreach($col in $row)
#end
#end
#end
#end
#if($result.Instructions.size() > 0)
#foreach($instructionResult in $result.Instructions)
#foreach($expectation in $instructionResult.Expectations)
$expectation.Status
$expectation.InstructionId
$expectation.Col
$expectation.Row
$expectation.Type
#if($expectation.Actual)
#end
#if($expectation.Expected)
#end
#if($expectation.EvaluationMessage)
#end
#end
#end
#end
#end
$formatter.getPageCounts().right
$formatter.getPageCounts().wrong
$formatter.getPageCounts().ignores
$formatter.getPageCounts().exceptions