Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php |
||
23 | public function __construct(TestResultList $testResultList) |
||
24 | { |
||
25 | $this->tagMap = []; |
||
26 | |||
27 | foreach ($testResultList->getTestResultContainers() as $parser) { |
||
28 | $format = $parser->getTestResultFormat(); |
||
29 | if ($format instanceof TestResultWithSymbolFormat) { |
||
30 | $this->addToMap($format); |
||
31 | } |
||
32 | } |
||
33 | } |
||
34 | |||
54 |