| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 14 | 
| Code Lines | 11 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 1 | 
| 1 | <?php  | 
            ||
| 17 | public function testNoIssues(): void  | 
            ||
| 18 |     { | 
            ||
| 19 | $expectedOutput = <<<XML  | 
            ||
| 20 | <?xml version="1.0" encoding="UTF-8"?>  | 
            ||
| 21 | <testsuites  | 
            ||
| 22 | name="SARB" tests="1" failures="0">  | 
            ||
| 23 | <testsuite errors="0" tests="1" failures="0" name="Success">  | 
            ||
| 24 | <testcase name="Success"/>  | 
            ||
| 25 | </testsuite>  | 
            ||
| 26 | </testsuites>  | 
            ||
| 27 | |||
| 28 | XML;  | 
            ||
| 29 | |||
| 30 | $this->assertNoIssuesOutput($expectedOutput);  | 
            ||
| 31 | }  | 
            ||
| 62 |