Files
investbrain/tests/TestCase.php
T

24 lines
389 B
PHP
Raw Normal View History

2024-08-01 13:53:10 -05:00
<?php
namespace Tests;
2024-09-06 19:39:04 -05:00
use Illuminate\Support\Facades\Artisan;
2024-08-01 13:53:10 -05:00
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
2024-09-06 19:39:04 -05:00
protected function setUp(): void
{
parent::setUp();
Artisan::call('migrate');
}
protected function tearDown(): void
{
parent::tearDown();
//
}
2024-08-01 13:53:10 -05:00
}