Total Complexity | 4 |
Total Lines | 46 |
Duplicated Lines | 0 % |
Changes | 4 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
13 | final class FileStorageTest extends AbstractStorageTest |
||
14 | { |
||
15 | private string $path = __DIR__ . '/runtime'; |
||
16 | |||
17 | protected function tearDown(): void |
||
18 | { |
||
19 | parent::tearDown(); |
||
20 | FileHelper::removeDirectory($this->path); |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @dataProvider dataProvider() |
||
25 | */ |
||
26 | public function testFlushWithGC(array $data): void |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * @dataProvider dataProvider() |
||
40 | */ |
||
41 | public function testClear(array $data): void |
||
51 | } |
||
52 | |||
53 | public function getStorage(DebuggerIdGenerator $idGenerator): StorageInterface |
||
62 |