| 148 |
lars |
1 |
<!DOCTYPE html>
|
|
|
2 |
<html lang="en">
|
|
|
3 |
<head>
|
|
|
4 |
<meta charset="UTF-8">
|
|
|
5 |
<title>Code Coverage for {{full_path}}</title>
|
|
|
6 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 200 |
lars |
7 |
<link href="{{path_to_root}}_css/bootstrap.min.css?v={{version}}" rel="stylesheet" type="text/css">
|
|
|
8 |
<link href="{{path_to_root}}_css/octicons.css?v={{version}}" rel="stylesheet" type="text/css">
|
|
|
9 |
<link href="{{path_to_root}}_css/style.css?v={{version}}" rel="stylesheet" type="text/css">
|
| 148 |
lars |
10 |
<link href="{{path_to_root}}_css/custom.css" rel="stylesheet" type="text/css">
|
|
|
11 |
</head>
|
|
|
12 |
<body>
|
|
|
13 |
<header>
|
|
|
14 |
<div class="container-fluid">
|
|
|
15 |
<div class="row">
|
|
|
16 |
<div class="col-md-12">
|
|
|
17 |
<nav aria-label="breadcrumb">
|
|
|
18 |
<ol class="breadcrumb">
|
|
|
19 |
{{breadcrumbs}}
|
|
|
20 |
</ol>
|
|
|
21 |
</nav>
|
|
|
22 |
</div>
|
|
|
23 |
</div>
|
|
|
24 |
</div>
|
|
|
25 |
</header>
|
|
|
26 |
<div class="container-fluid">
|
|
|
27 |
<div class="table-responsive">
|
|
|
28 |
<table class="table table-bordered">
|
|
|
29 |
<thead>
|
|
|
30 |
<tr>
|
|
|
31 |
<td> </td>
|
|
|
32 |
<td colspan="9"><div align="center"><strong>Code Coverage</strong></div></td>
|
|
|
33 |
</tr>
|
|
|
34 |
<tr>
|
|
|
35 |
<td> </td>
|
|
|
36 |
<td colspan="3"><div align="center"><strong>Lines</strong></div></td>
|
|
|
37 |
<td colspan="3"><div align="center"><strong>Functions and Methods</strong></div></td>
|
|
|
38 |
<td colspan="3"><div align="center"><strong>Classes and Traits</strong></div></td>
|
|
|
39 |
</tr>
|
|
|
40 |
</thead>
|
|
|
41 |
<tbody>
|
|
|
42 |
{{items}}
|
|
|
43 |
</tbody>
|
|
|
44 |
</table>
|
|
|
45 |
</div>
|
|
|
46 |
<footer>
|
|
|
47 |
<hr/>
|
|
|
48 |
<h4>Legend</h4>
|
|
|
49 |
<p>
|
|
|
50 |
<span class="danger"><strong>Low</strong>: 0% to {{low_upper_bound}}%</span>
|
|
|
51 |
<span class="warning"><strong>Medium</strong>: {{low_upper_bound}}% to {{high_lower_bound}}%</span>
|
|
|
52 |
<span class="success"><strong>High</strong>: {{high_lower_bound}}% to 100%</span>
|
|
|
53 |
</p>
|
|
|
54 |
<p>
|
|
|
55 |
<small>Generated by <a href="https://github.com/sebastianbergmann/php-code-coverage" target="_top">php-code-coverage {{version}}</a> using {{runtime}}{{generator}} at {{date}}.</small>
|
|
|
56 |
</p>
|
|
|
57 |
</footer>
|
|
|
58 |
</div>
|
|
|
59 |
</body>
|
|
|
60 |
</html>
|