core-jgi/fitnesse/FitNesseRoot/files/templates/suiteHistoryXML.vm

29 lines
1.3 KiB
XML

<?xml version="1.0"?>
<suiteResults>
<FitNesseVersion>$suiteExecutionReport.getVersion()</FitNesseVersion>
<rootPath>$suiteExecutionReport.getRootPath()</rootPath>
#foreach ($reference in $suiteExecutionReport.getPageHistoryReferences())
<pageHistoryReference>
<name>$reference.getPageName()</name>
<date>$reference.getDateString()</date>
<pageHistoryLink>$reference.getPageName()?pageHistory&amp;resultDate=$reference.getResultDate()</pageHistoryLink>
<counts>
<right>$reference.getTestSummary().getRight()</right>
<wrong>$reference.getTestSummary().getWrong()</wrong>
<ignores>$reference.getTestSummary().getIgnores()</ignores>
<exceptions>$reference.getTestSummary().getExceptions()</exceptions>
</counts>
<runTimeInMillis>$reference.RunTimeInMillis</runTimeInMillis>
</pageHistoryReference>
#end
<finalCounts>
<right>$suiteExecutionReport.getFinalCounts().getRight()</right>
<wrong>$suiteExecutionReport.getFinalCounts().getWrong()</wrong>
<ignores>$suiteExecutionReport.getFinalCounts().getIgnores()</ignores>
<exceptions>$suiteExecutionReport.getFinalCounts().getExceptions()</exceptions>
</finalCounts>
<totalRunTimeInMillis>$suiteExecutionReport.TotalRunTimeInMillis</totalRunTimeInMillis>
</suiteResults>