koel/tests/TestCase.php
2017-06-10 14:25:30 +01:00

16 lines
263 B
PHP

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