| Total Complexity | 6 |
| Total Lines | 42 |
| Duplicated Lines | 0 % |
| Changes | 10 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | abstract class TestCase extends BaseTestCase |
||
| 16 | { |
||
| 17 | use CreatesApplication; |
||
| 18 | use ResetsApplication; |
||
| 19 | use CreatesTemporaryFiles; |
||
| 20 | use InteractsWithPages; |
||
| 21 | |||
| 22 | protected static bool $booted = false; |
||
| 23 | |||
| 24 | protected function setUp(): void |
||
| 32 | } |
||
| 33 | } |
||
| 34 | |||
| 35 | protected function tearDown(): void |
||
| 49 | } |
||
| 50 | |||
| 51 | protected function assertFileEqualsString(string $string, string $path, bool $strict = false): void |
||
| 60 |