| 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 | 'phpunitDiffFilter',  | 
            ||
| 18 | '--phpmnd',  | 
            ||
| 19 | __DIR__ . '/fixtures/change.txt',  | 
            ||
| 20 | __DIR__ . '/fixtures/phpmnd.txt'  | 
            ||
| 21 | ];  | 
            ||
| 22 | ob_start();  | 
            ||
| 23 | require(__DIR__ . "/../src/Runners/generic.php");  | 
            ||
| 24 | $output = ob_get_clean();  | 
            ||
| 25 |         $this->assertContains('100.00%', $output); | 
            ||
| 26 | }  | 
            ||
| 28 |