Files
new_ine/tests/TestCase.php
2020-09-14 14:29:29 +08:00

11 lines
163 B
PHP

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