1
0
mirror of https://koodu.h-i.works/projects/thebadspace synced 2025-06-20 15:54:37 -05:00
Files
thebadspace/tests/TestCase.php
Ro 1480da3d50 The Big Switch
Archived previous version to switch codebase to Laravel framework for
the sake of reducing complexity to lower the barrier for entry for
potential contributers. Because easier is always better.
2023-08-14 12:07:53 -07:00

11 lines
163 B
PHP

<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
}