Total Complexity | 3 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | final class FileCacheFeatureTest extends TestCase |
||
15 | { |
||
16 | public function setUp(): void |
||
17 | { |
||
18 | Gacela::bootstrap(__DIR__, static function (GacelaConfig $config): void { |
||
19 | $config->setCacheEnabled(true); |
||
20 | $config->setCacheDirectory('custom/caching-dir'); |
||
21 | }); |
||
22 | } |
||
23 | |||
24 | public function tearDown(): void |
||
25 | { |
||
26 | DirectoryUtil::removeDir(__DIR__ . '/custom/caching-dir'); |
||
27 | } |
||
28 | |||
29 | public function test_custom_caching_dir(): void |
||
36 | } |
||
37 | } |
||
38 |