1 | <?php |
||
5 | class PhpUnitResponse |
||
6 | { |
||
7 | /** |
||
8 | * @var bool |
||
9 | */ |
||
10 | private $phpunit; |
||
11 | /** |
||
12 | * @var bool |
||
13 | */ |
||
14 | private $phpunitRandomMode; |
||
15 | /** |
||
16 | * @var null|string |
||
17 | */ |
||
18 | private $phpunitOptions; |
||
19 | |||
20 | /** |
||
21 | * PhpUnitResponse constructor. |
||
22 | * |
||
23 | * @param bool $phpunit |
||
24 | * @param bool $phpunitRandomMode |
||
25 | * @param string|null $phpunitOptions |
||
26 | */ |
||
27 | 9 | public function __construct($phpunit, $phpunitRandomMode, $phpunitOptions) |
|
33 | |||
34 | /** |
||
35 | * @return bool |
||
36 | */ |
||
37 | 3 | public function isPhpunit() |
|
41 | |||
42 | /** |
||
43 | * @return bool |
||
44 | */ |
||
45 | 3 | public function isPhpunitRandomMode() |
|
49 | |||
50 | /** |
||
51 | * @return null|string |
||
52 | */ |
||
53 | 3 | public function getPhpunitOptions() |
|
57 | } |
||
58 |