fanatic/tests/TestCase.php

13 lines
192 B
PHP
Raw Normal View History

2022-04-22 20:01:30 -07:00
<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
2022-04-26 11:15:27 -07:00
protected $seed = true;
2022-04-22 20:01:30 -07:00
}