Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
14 | class PathTest extends AbstractTest |
||
15 | { |
||
16 | /** |
||
17 | * @dataProvider data_basePath |
||
18 | * @param $controller |
||
19 | * @param $path |
||
20 | */ |
||
21 | public function test_basePath($controller, $path) |
||
22 | { |
||
23 | self::assertSame($path, Path::basePath($controller)); |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * @return \string[][] |
||
28 | */ |
||
29 | public function data_basePath() |
||
37 | ]; |
||
38 | } |
||
40 |