-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathText.php
More file actions
110 lines (93 loc) · 2.57 KB
/
Text.php
File metadata and controls
110 lines (93 loc) · 2.57 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
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
<?php
/**
* Code Coverage Text 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\Text as TextReport;
/**
* Text report
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
class Text implements ReportInterface
{
/**
* @var \SebastianBergmann\CodeCoverage\Report\Text
*/
private $report;
/**
* @var array
*/
private $options;
/**
* {@inheritdoc}
*/
public function __construct(array $options)
{
if (! isset($options['showColors'])) {
$options['showColors'] = false;
}
if (! isset($options['printer'])) {
$options['printer'] = null;
}
if (! isset($options['lowUpperBound'])) {
$options['lowUpperBound'] = 35;
}
if (! isset($options['highUpperBound'])) {
$options['highUpperBound'] = 70;
}
if (! isset($options['showUncoveredFiles'])) {
$options['showUncoveredFiles'] = false;
}
if ($this->getVersion() === '1.2') {
$outputStream = new \PHPUnit_Util_Printer($options['printer']);
$this->report = new TextReport(
$outputStream,
$options['lowUpperBound'],
$options['highUpperBound'],
$options['showUncoveredFiles']
);
} else {
if (! isset($options['showOnlySummary'])) {
$options['showOnlySummary'] = false;
}
$this->report = new TextReport(
$options['lowUpperBound'],
$options['highUpperBound'],
$options['showUncoveredFiles'],
$options['showOnlySummary']
);
}
$this->options = $options;
}
/**
* {@inheritdoc}
*/
public function process(CodeCoverage $coverage)
{
return $this->report->process(
$coverage,
$this->options['showColors']
);
}
/**
* return version of CodeCoverage
*
* @return string
*/
private function getVersion()
{
$reflectionMethod = new \ReflectionMethod('SebastianBergmann\CodeCoverage\Report\Text', '__construct');
$parameters = $reflectionMethod->getParameters();
if (reset($parameters)->name === 'outputStream') {
return '1.2';
}
return '1.3';
}
}