pedi2/tests/TestCase.php
2021-12-30 11:49:40 -03:00

10 lines
163 B
PHP

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