| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | final class FileProfilerFeatureTest extends TestCase |
||
| 15 | { |
||
| 16 | public function setUp(): void |
||
| 17 | { |
||
| 18 | Gacela::bootstrap(__DIR__, static function (GacelaConfig $config): void { |
||
| 19 | $config->setProfilerEnabled(true); |
||
| 20 | $config->setProfilerDirectory('custom/profiler-dir'); |
||
| 21 | }); |
||
| 22 | } |
||
| 23 | |||
| 24 | public function tearDown(): void |
||
| 27 | } |
||
| 28 | |||
| 29 | public function test_custom_profiler_dir(): void |
||
| 36 | } |
||
| 37 | } |
||
| 38 |