Files
investbrain/tests/TestCase.php
T
2024-09-06 19:39:04 -05:00

24 lines
389 B
PHP

<?php
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();
//
}
}