create test directory

This commit is contained in:
2024-03-02 11:16:57 +03:30
parent f90afbb406
commit 908c6c8024
4 changed files with 76 additions and 1 deletions

10
tests/TestCase.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
}