Files
investbrain/tests/TestCase.php
T
2025-01-28 17:33:54 -06:00

25 lines
340 B
PHP

<?php
declare(strict_types=1);
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
protected function setUp(): void
{
parent::setUp();
//
}
protected function tearDown(): void
{
parent::tearDown();
//
}
}