Files
investbrain/tests/TestCase.php
T

23 lines
314 B
PHP
Raw Normal View History

2024-08-01 13:53:10 -05:00
<?php
namespace Tests;
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();
2025-01-28 17:14:49 -06:00
2024-09-06 21:59:58 -05:00
//
2024-09-06 19:39:04 -05:00
}
2025-01-28 17:14:49 -06:00
2024-09-06 19:39:04 -05:00
protected function tearDown(): void
{
parent::tearDown();
2025-01-28 17:14:49 -06:00
2024-09-06 19:39:04 -05:00
//
}
2024-08-01 13:53:10 -05:00
}