phpvms/tests/TestCase.php
Nabeel Shahzad 463140709a
revert(testing): restore Laravel-standard bootstrap
Custom test bootstrap, RefreshDatabase trait override, and dedicated
sqlite-cleanup machinery were overengineered. Restore vendor/autoload.php
bootstrap, :memory: sqlite, plain TestCase, and standard Pest setup as
shipped before ef94e03f. Existing tests unchanged.

Reverts bootstrap portions of ef94e03f and all of 6f6a083d, 18c119b3.
2026-04-26 11:54:25 -05:00

10 lines
160 B
PHP

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