| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | 38 | public function formatSingleResult(PrintableTestResultInterface $singleResult): string |
|
| 37 | { |
||
| 38 | 38 | $format = $singleResult->getTestResultFormat(); |
|
| 39 | |||
| 40 | 38 | if (! $format instanceof TestResultWithSymbolFormat) { |
|
| 41 | 4 | return ''; |
|
| 42 | } |
||
| 43 | |||
| 44 | 37 | $resultSymbol = $format->getTestResultSymbol(); |
|
| 45 | 37 | $tag = $this->tagMap[$resultSymbol]; |
|
| 46 | |||
| 47 | 37 | return sprintf('<%s>%s</%s>', $tag, $resultSymbol, $tag); |
|
| 48 | } |
||
| 49 | |||
| 55 |