| Conditions | 3 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 52 | 33 | private function printFormattedWithCounter(PrintableTestResultInterface $testResult) |
|
| 53 | { |
||
| 54 | 33 | if ($this->counter % 80 === 0 && $this->counter > 1) { |
|
| 55 | 6 | $this->output->writeln(''); |
|
| 56 | } |
||
| 57 | |||
| 58 | 33 | ++$this->counter; |
|
| 59 | |||
| 60 | 33 | $this->output->write( |
|
| 61 | 33 | $this->singleResultFormatter->formatSingleResult($testResult) |
|
| 62 | ); |
||
| 63 | } |
||
| 64 | } |
||
| 65 |