Level 18
TestCase has a method (from InteractsWithDatabase trait) for it that simply call php artisan db:seed
combining it with the setUp method you can do this.
public function setUp()
{
parent::setUp();
$this->seed();
}
https://laravel.com/docs/7.x/testing#artisan-test-runner just scroll a bit up for the Doc about setUp