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

23 lines
314 B
PHP

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