-
Notifications
You must be signed in to change notification settings - Fork 17
/
report-template.html
81 lines (76 loc) · 2.49 KB
/
report-template.html
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title> {{projectName}} - Blanket Report</title>
<link rel="stylesheet" type="text/css" href="SimpleJavaAppReport.html-files/style.css">
<script src="SimpleJavaAppReport.html-files/sorttable.js" type="text/javascript"></script>
</head>
<body>
<div class="headline">
Coverage Report
</div>
<div class="session">
</div>
<div class="sessionDate">
measured on {{creationDate}}
</div>
<div class="description">
Description:
</div>
<div class="metricsForWholeSession">
</div><div class="overview">
<table class="overview sortable">
<thead class="overview">
<tr class="overview">
<th class="overview firstcolumn"></th>
<th class="overview" colspan="3">Statement Coverage</th>
<th class="overview" colspan="3">Branch Coverage</th>
<th class="overview" colspan="3">Loop Coverage</th>
<th class="overview" colspan="3">Strict Condition Coverage</th>
</tr>
</thead>
<tbody class="overview">
<tr class="overview">
<td class="overview firstcolumn">
Blanket
</td>
<td class="overview">
{{covered}} / {{lines}}
</td>
<td class="overview">
{{percentage}} %
</td>
<td class="overview coverage">
</td>
<td class="overview">
{{covered}} / {{lines}}
</td>
<td class="overview">
{{percentage}} %
</td>
<td class="overview coverage">
</td>
<td class="overview">
{{covered}} / {{lines}}
</td>
<td class="overview">
{{percentage}} %
</td>
<td class="overview coverage">
</td>
<td class="overview">
{{covered}} / {{lines}}
</td>
<td class="overview">
{{percentage}} %
</td>
<td class="overview coverage">
</td>
</tr>
</tbody>
<tfoot></tfoot></table>
</div>
<div class="creationNote">
created on {{creationDate}} with
blanket.js
</div>
</body></html>