Files
backend/tests/TestCase.php
2024-03-02 11:16:57 +03:30

11 lines
173 B
PHP

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