| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public function testValid() |
||
| 15 | { |
||
| 16 | $GLOBALS['argv'] = [ |
||
| 17 | 'diffFilter', |
||
| 18 | '--psalm', |
||
| 19 | __DIR__ . '/fixtures/change.txt', |
||
| 20 | __DIR__ . '/fixtures/psalm.xml' |
||
| 21 | ]; |
||
| 22 | ob_start(); |
||
| 23 | require(__DIR__ . "/../src/Runners/generic.php"); |
||
| 24 | $output = ob_get_clean(); |
||
| 25 | $this->assertContains('100.00% Covered', $output); |
||
| 26 | } |
||
| 48 |