| Total Complexity | 2 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | final class NoFileCacheFeatureTest extends TestCase |
||
| 14 | { |
||
| 15 | public function setUp(): void |
||
| 16 | { |
||
| 17 | Gacela::bootstrap(__DIR__, static function (GacelaConfig $config): void { |
||
| 18 | $config->setCacheEnabled(false); |
||
| 19 | $config->setCacheDirectory('custom/no-caching-dir'); |
||
| 20 | }); |
||
| 21 | } |
||
| 22 | |||
| 23 | public function test_custom_no_caching_dir(): void |
||
| 30 | } |
||
| 31 | } |
||
| 32 |