Files
example-back/tests/TestCase.php
Refactorian 4fe93734e4 Update (#1)
2023-04-18 21:50:45 +09:00

11 lines
163 B
PHP

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