Files
shipping-portal/tests/TestCase.php
glovetleong 2a6a980fc3 unit test
2022-07-30 09:40:50 +08:00

11 lines
163 B
PHP

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