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