| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | 57 | public function __construct( |
|
| 25 | string $testResultSymbol, |
||
| 26 | string $tag, |
||
| 27 | string $title, |
||
| 28 | bool $printTestOutput = true, |
||
| 29 | bool $printFilesRecap = true |
||
| 30 | ) { |
||
| 31 | 57 | parent::__construct($tag, $title, $printTestOutput, $printFilesRecap); |
|
| 32 | 57 | $this->testResultSymbol = $testResultSymbol; |
|
| 33 | } |
||
| 34 | |||
| 40 |