. */ namespace Tests; use Illuminate\Foundation\Testing\TestCase as BaseTestCase; use Illuminate\Foundation\Testing\RefreshDatabase; abstract class TestCaseWithSpaceMiddleware extends BaseTestCase { use CreatesApplication; use RefreshDatabase; use TestUtilsTrait; public function setUp(): void { parent::setUp(); config()->set('app.sip_domain', 'sip.example.com'); } }