Total Complexity | 4 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | abstract class TestCase extends BaseTestCase |
||
10 | { |
||
11 | use RefreshDatabase; |
||
|
|||
12 | |||
13 | public function setUp(): void |
||
14 | { |
||
15 | parent::setUp(); |
||
16 | } |
||
17 | |||
18 | protected function defineDatabaseMigrations() |
||
19 | { |
||
20 | $this->loadLaravelMigrations(); |
||
21 | $this->loadMigrationsFrom(__DIR__.'/../src/migrations'); |
||
22 | } |
||
23 | |||
24 | protected function getPackageProviders($app): array |
||
27 | } |
||
28 | |||
29 | protected function getEnvironmentSetUp($app) { |
||
44 |