Files
investbrain/tests/TestCase.php
T
2024-09-06 21:59:58 -05:00

24 lines
366 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();
//
}
protected function tearDown(): void
{
parent::tearDown();
//
}
}