-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathHtml.php
More file actions
81 lines (68 loc) · 1.62 KB
/
Html.php
File metadata and controls
81 lines (68 loc) · 1.62 KB
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
<?php
/**
* Code Coverage HTML Report
*
* @copyright 2013 Anthon Pang
*
* @license BSD-3-Clause
*/
namespace LeanPHP\Behat\CodeCoverage\Common\Report;
use LeanPHP\Behat\CodeCoverage\Common\ReportInterface;
use SebastianBergmann\CodeCoverage\CodeCoverage;
use SebastianBergmann\CodeCoverage\Report\Html\Facade;
/**
* HTML report
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
class Html implements ReportInterface
{
/**
* @var Facade
*/
private $report;
/**
* @var array
*/
private $options;
/**
* {@inheritdoc}
*/
public function __construct(array $options)
{
if (! isset($options['target'])) {
$options['target'] = null;
}
if (! isset($options['charset'])) {
$options['charset'] = 'UTF-8';
}
if (! isset($options['highlight'])) {
$options['highlight'] = false;
}
if (! isset($options['lowUpperBound'])) {
$options['lowUpperBound'] = 35;
}
if (! isset($options['highUpperBound'])) {
$options['highUpperBound'] = 70;
}
if (! isset($options['generator'])) {
$options['generator'] = '';
}
$this->report = new Facade(
$options['lowUpperBound'],
$options['highUpperBound'],
$options['generator']
);
$this->options = $options;
}
/**
* {@inheritdoc}
*/
public function process(CodeCoverage $coverage)
{
return $this->report->process(
$coverage,
$this->options['target']
);
}
}