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