This commit is contained in:
TimmensOne
2023-03-19 11:27:40 +01:00
parent b6bf40e550
commit e6a321ca38
80 changed files with 10982 additions and 0 deletions

10
app/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;
}