wip testing

This commit is contained in:
hackerESQ
2024-09-06 19:39:04 -05:00
parent 9a99686db1
commit 90262abffb
19 changed files with 193 additions and 92 deletions
+14 -1
View File
@@ -2,9 +2,22 @@
namespace Tests;
use Illuminate\Support\Facades\Artisan;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
//
protected function setUp(): void
{
parent::setUp();
Artisan::call('migrate');
}
protected function tearDown(): void
{
parent::tearDown();
//
}
}