laravel-api-simple-blog/tests/TestCase.php
2024-10-18 02:14:03 +10:00

12 lines
214 B
PHP

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