summaryrefslogtreecommitdiffstats
path: root/website/templates/tests.ezt
blob: 187a6ff80557645d67496da22a68f733518d5b06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<h1>Test suite ([title])</h1>

<p>Executed on [datetime]</p>

[for suite]
 [if-any suite.title]<h2>[suite.title]</h2>[end]
 <table>
  [for suite.test]
   <tr>
    <td class="test-description">[suite.test.description]</td>
    <td class="[suite.test.result]"> </td>
   </tr>
  [end]
 <tfoot>
  <tr>
   <td colspan="2">
    [suite.len_tests] tests
    [if-any suite.duration]executed in [suite.duration]s[end]
   </td>
  </tr>
 </tfoot>
 </table>
[end]