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