koel/tests/TestCase.php
2018-08-19 11:06:31 +02:00

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();
}
}