Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | final class FeatureTest extends TestCase |
||
12 | { |
||
13 | protected function setUp(): void |
||
14 | { |
||
15 | $configFn = static function (GacelaConfig $config): void { |
||
16 | $config->resetInMemoryCache(); |
||
17 | $config->addAppConfig('custom-config.php', 'custom-config_local.php'); |
||
18 | }; |
||
19 | |||
20 | Gacela::bootstrap(__DIR__, $configFn); |
||
21 | } |
||
22 | |||
23 | public function test_load_default_config(): void |
||
34 | ); |
||
35 | } |
||
37 |