Files
BarangaySystem/tests/TestCase.php
2026-06-06 18:43:00 +08:00

14 lines
250 B
PHP

<?php
declare(strict_types=1);
namespace Tests;
use Hypervel\Foundation\Testing\Concerns\RunTestsInCoroutine;
use Hypervel\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use RunTestsInCoroutine;
}