koel/tests/TestCase.php
2017-08-05 17:56:11 +01:00

17 lines
341 B
PHP

<?php
namespace Tests;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use DatabaseTransactions, CreatesApplication;
public function setUp()
{
parent::setUp();
$this->prepareForTests();
}
}