mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 20:44:19 +00:00
12 lines
308 B
PHP
12 lines
308 B
PHP
<?php
|
|
|
|
namespace Tests;
|
|
|
|
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
|
|
|
//20250414 This was rename from TestCase to TestCaseChild so not to create conflict with the same class already exist at development branch
|
|
abstract class TestCaseChild extends BaseTestCase
|
|
{
|
|
use CreatesApplication;
|
|
}
|