Files
ponzi/tests/TestCase.php
2021-09-29 08:20:24 -05:00

12 lines
243 B
PHP

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