| 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 |
||
| 31 | { |
||
| 32 | $this->markTestIncomplete(); |
||
| 33 | } |
||
| 34 | |||
| 35 | public function testNotWritablePathThrowException(): void |
||
| 36 | { |
||
| 37 | $this->markTestIncomplete(); |
||
| 38 | } |
||
| 39 | |||
| 40 | public function testMoveFileWithoutFilter(): void |
||
| 41 | { |
||
| 42 | $this->markTestIncomplete(); |
||
| 43 | } |
||
| 44 | |||
| 45 | public function testMoveOnlyFilteredFiles(): void |
||
| 46 | { |
||
| 47 | $this->markTestIncomplete(); |
||
| 48 | } |
||
| 50 |