mirror of
https://github.com/koel/koel
synced 2024-11-28 06:50:27 +00:00
18 lines
394 B
PHP
18 lines
394 B
PHP
<?php
|
|
|
|
namespace Tests;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
|
use Tests\Traits\InteractsWithIoc;
|
|
|
|
abstract class TestCase extends BaseTestCase
|
|
{
|
|
use DatabaseTransactions, CreatesApplication, InteractsWithIoc;
|
|
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
$this->prepareForTests();
|
|
}
|
|
}
|