Conditions | 3 |
Paths | 3 |
Total Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | protected function printResults(): void |
||
14 | { |
||
15 | $tests = $this->testsToPrint(); |
||
16 | |||
17 | if (count($tests) === 0) { |
||
18 | return; |
||
19 | } |
||
20 | |||
21 | echo PHP_EOL . 'Slow tests detected: ' . PHP_EOL; |
||
22 | |||
23 | foreach ($tests as $test => $time) { |
||
24 | echo str_pad($time, 5, ' ', STR_PAD_LEFT) . " ms: {$test}" . PHP_EOL; |
||
25 | } |
||
26 | |||
27 | echo PHP_EOL; |
||
28 | } |
||
29 | } |