Blame view

test/FitNesseRoot/files/templates/suiteHistoryXML.vm 1.27 KB
fbe3c2bb   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?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>