-
Notifications
You must be signed in to change notification settings - Fork 14
/
report_template.html
132 lines (113 loc) · 3.39 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<html>
<head>
<title>
Test Report
</title>
<style type="text/css">
.test-result-table {
border: 1px solid black;
width: 1000px;
}
.test-result-table-header-cell {
border-bottom: 1px solid black;
background-color: silver;
}
.test-result-step-command-cell {
border-bottom: 1px solid gray;
}
.test-result-step-description-cell {
border-bottom: 1px solid gray;
}
.test-result-step-result-cell-ok {
border-bottom: 1px solid gray;
background-color: green;
}
.test-result-step-result-cell-failure {
border-bottom: 1px solid gray;
background-color: red;
}
.test-result-step-result-cell-notperformed {
border-bottom: 1px solid gray;
background-color: white;
}
.test-result-describe-cell {
background-color: tan;
font-style: italic;
}
.test-cast-status-box-ok {
border: 1px solid black;
float: left;
margin-right: 10px;
width: 45px;
height: 25px;
background-color: green;
}
</style>
</head>
<body>
<h1 class="test-results-header">
Scan Report
</h1>
<table class="test-result-table" cellspacing="0">
<thead>
<tr>
<td class="test-result-table-header-cell">
Test Case
</td>
<td class="test-result-table-header-cell">
Description
</td>
<td class="test-result-table-header-cell">
Result
</td>
</tr>
</thead>
<tbody>
<tr class="test-result-step-row test-result-step-row-altone">
<td class="test-result-step-command-cell">
a1
</td>
<td class="test-result-step-description-cell">
a2
</td>
<td class="test-result-step-result-cell-ok">
a3
</td>
</tr>
</tr>
<tr class="test-result-step-row test-result-step-row-alttwo">
<td class="test-result-step-command-cell">
c1
</td>
<td class="test-result-step-description-cell">
c2
</td>
<td class="test-result-step-result-cell-failure">
c3
</td>
</tr>
<tr class="test-result-step-row test-result-step-row-altone">
<td class="test-result-step-command-cell">
d1
</td>
<td class="test-result-step-description-cell">
d2
</td>
<td class="test-result-step-result-cell-ok">
d3
</td>
<tr class="test-result-step-row test-result-step-row-altone">
<td class="test-result-step-command-cell">
e1
</td>
<td class="test-result-step-description-cell">
e2
</td>
<td class="test-result-step-result-cell-ok">
e3
</td>
</tr>
</tbody>
</table>
</body>
</html>