| Total Complexity | 3 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class SnapshotTest extends BaseTest |
||
| 18 | { |
||
| 19 | public function testStringConfigParams() |
||
| 20 | { |
||
| 21 | // string important. Emulating string from .env |
||
| 22 | $app = $this->makeApp([ |
||
| 23 | 'SNAPSHOT_MAX_FILES' => '1', |
||
| 24 | 'SNAPSHOT_VERBOSITY' => '1' |
||
| 25 | ]); |
||
| 26 | |||
| 27 | $this->assertInstanceOf(SnapshotterInterface::class, $app->get(SnapshotterInterface::class)); |
||
| 28 | } |
||
| 29 | |||
| 30 | public function testSnapshot(): void |
||
| 42 | } |
||
| 43 | } |
||
| 44 |