FitNesseRoot.files.templates.suiteExecutionReport.vm Maven / Gradle / Ivy
#set ($page_title = "Suite Execution Report")
#parse("pageHead.vm")
#if($suiteExecutionReport)
$suiteExecutionReport.getRootPath()
$suiteExecutionReport.getDate()
FitNesse Version: $suiteExecutionReport.Version
#set($finalCounts = $suiteExecutionReport.FinalCounts)
#if($finalCounts)
Test Pages:
$finalCounts.Right right,
$finalCounts.Wrong wrong,
$finalCounts.Ignores ignored,
$finalCounts.Exceptions exceptions
#end
Right
Wrong
Ignored
Exceptions
Page
#foreach($pageHistoryReference in $suiteExecutionReport.getPageHistoryReferences())
#set($counts = $pageHistoryReference.getTestSummary())
$counts.Right
$counts.Wrong
$counts.Ignores
$counts.Exceptions
$pageHistoryReference.getPageName()
#end
#end
#parse("pageFooter.vm")