Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
1 | <?php |
||
23 | public function testFindControllersInDirs() |
||
24 | { |
||
25 | $controllers = $this->controllerFinder->findControllersInDirs([__DIR__.'/ControllerFinderSource']); |
||
26 | |||
27 | $this->assertEquals( |
||
28 | [SomeController::class, SomeOtherController::class], |
||
29 | $controllers, |
||
30 | '', |
||
31 | 0.0, |
||
32 | 10, |
||
33 | true |
||
34 | ); |
||
35 | } |
||
36 | } |
||
37 |