| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 57 | public function testUnknownDiffFiles() |
||
| 58 | { |
||
| 59 | $this->diff = new DiffFileLoader(__DIR__ . '/fixtures/coverageMatchUnknownFiles.txt'); |
||
| 60 | $coverage = new PhpunitFilter( |
||
| 61 | $this->diff, |
||
| 62 | $this->matcher, |
||
| 63 | $this->coverage |
||
| 64 | ); |
||
| 65 | $expected = [ |
||
| 66 | 'tests\Unknown' => [''], |
||
| 67 | ]; |
||
| 68 | $this->assertEquals($expected, $coverage->getTestsForRunning()); |
||
| 69 | } |
||
| 70 | } |