Teren-app/tests/TestCase.php
2025-11-06 21:54:07 +01:00

16 lines
417 B
PHP

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