example_app/tests/TestCase.php
2025-11-24 18:01:26 -05:00

11 lines
163 B
PHP
Executable File

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