fanatic/tests/TestCase.php
2022-04-26 11:15:27 -07:00

12 lines
192 B
PHP

<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
protected $seed = true;
}