Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
16 | class FileWritableCheckTest extends SapphireTest |
||
17 | { |
||
18 | public function testCheckReportsWritablePaths() |
||
19 | { |
||
20 | $check = new FileWriteableCheck(TEMP_FOLDER); |
||
21 | |||
22 | $expected = [ |
||
23 | EnvironmentCheck::OK, |
||
24 | '' |
||
25 | ]; |
||
26 | |||
27 | $this->assertEquals($expected, $check->check()); |
||
28 | } |
||
29 | |||
30 | public function testCheckReportsNonWritablePaths() |
||
37 | } |
||
38 | } |
||
39 |