We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 14 | 
| Code Lines | 8 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 24 | protected function setUp(): void | ||
| 25 |     { | ||
| 26 | parent::setUp(); | ||
| 27 | |||
| 28 | // call migrations specific to our tests | ||
| 29 | $this->loadMigrationsFrom([ | ||
| 30 | '--database' => 'testing', | ||
| 31 | '--path' => realpath(__DIR__.'/../../config/database/migrations'), | ||
| 32 | ]); | ||
| 33 | |||
| 34 |         $this->seed('Backpack\CRUD\Tests\config\database\seeds\UsersRolesTableSeeder'); | ||
| 35 |         $this->seed('Backpack\CRUD\Tests\config\database\seeds\UsersTableSeeder'); | ||
| 36 |         $this->seed('Backpack\CRUD\Tests\config\database\seeds\ArticlesTableSeeder'); | ||
| 37 |         $this->seed('Backpack\CRUD\Tests\config\database\seeds\MorphableSeeders'); | ||
| 38 | } | ||
| 60 |