Total Complexity | 4 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | final class DirTest extends TestCase |
||
9 | { |
||
10 | public function testFromFile() |
||
14 | } |
||
15 | |||
16 | public function testBadPath() |
||
20 | } |
||
21 | |||
22 | public function testRealpath() |
||
23 | { |
||
24 | $dir = new Dir(__DIR__ . '/../../../data'); |
||
25 | self::assertRegExp('|^.+tests/data$|', (string) $dir); |
||
26 | } |
||
27 | |||
28 | public function testPathGetter() |
||
33 | } |
||
34 | } |
||
35 |