Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public function testFindingOnSamplePhpdocLayout() : void |
||
26 | { |
||
27 | $result = []; |
||
28 | include __DIR__ . '/../../examples/03-sample-phpdoc-layout.php'; |
||
29 | |||
30 | $this->assertCount(4, $result); |
||
31 | $this->assertSame('JmsSerializerServiceProvider.php', $result[0]['basename']); |
||
32 | $this->assertSame('MonologServiceProvider.php', $result[1]['basename']); |
||
33 | $this->assertSame('Application.php', $result[2]['basename']); |
||
34 | $this->assertSame('Bootstrap.php', $result[3]['basename']); |
||
35 | } |
||
36 | } |
||
37 |