Mail support testing faze

This commit is contained in:
Simon Pocrnjič
2025-10-07 21:57:10 +02:00
parent 175111bed4
commit b9ca8244ef
18 changed files with 1279 additions and 101 deletions
+4
View File
@@ -3,9 +3,13 @@
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
use Illuminate\Foundation\Testing\Concerns\InteractsWithAuthentication;
use Illuminate\Foundation\Testing\Concerns\MakesHttpRequests;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
use \Illuminate\Foundation\Testing\RefreshDatabase;
use InteractsWithAuthentication;
use MakesHttpRequests;
}