lernschiff/tests/TestCase.php

15 lines
328 B
PHP

<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
protected function refreshApplication(): void
{
parent::refreshApplication();
$this->app['config']->set('database.connections.mysql.database', 'lernschiff_test');
}
}