| Total Complexity | 5 |
| Total Lines | 55 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 10 | class DirRecursiveFailTest extends AStorageTest |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @throws FilesException |
||
| 14 | * @throws PathsException |
||
| 15 | */ |
||
| 16 | public function testCreate(): void |
||
| 17 | { |
||
| 18 | $lib = $this->getDirRecursiveFailLib(); |
||
| 19 | $this->expectException(FilesException::class); |
||
| 20 | $lib->createDir(['another'], false); |
||
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @throws FilesException |
||
| 25 | * @throws PathsException |
||
| 26 | */ |
||
| 27 | public function testRead(): void |
||
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @throws FilesException |
||
| 36 | * @throws PathsException |
||
| 37 | */ |
||
| 38 | public function testCopy(): void |
||
| 43 | } |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @throws FilesException |
||
| 47 | * @throws PathsException |
||
| 48 | */ |
||
| 49 | public function testMove(): void |
||
| 54 | } |
||
| 55 | |||
| 56 | /** |
||
| 57 | * @throws FilesException |
||
| 58 | * @throws PathsException |
||
| 59 | */ |
||
| 60 | public function testDelete(): void |
||
| 67 |