Total Complexity | 5 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
21 | final class MoveUploadedFilesMiddlewareTest extends AbstractMiddlewareTest |
||
22 | { |
||
23 | public function setUp(): void |
||
24 | { |
||
25 | parent::setUp(); |
||
26 | |||
27 | $this->middleware = new MoveUploadedFilesMiddleware(\sys_get_temp_dir()); |
||
28 | } |
||
29 | |||
30 | public function testInvalidPathThrowException(): void |
||
33 | } |
||
34 | |||
35 | public function testNotWritablePathThrowException(): void |
||
38 | } |
||
39 | |||
40 | public function testMoveFileWithoutFilter(): void |
||
43 | } |
||
44 | |||
45 | public function testMoveOnlyFilteredFiles(): void |
||
48 | } |
||
49 | } |
||
50 |