diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php index 6d9e8a75..fa24b57a 100644 --- a/tests/Feature/ExampleTest.php +++ b/tests/Feature/ExampleTest.php @@ -2,9 +2,9 @@ namespace Tests\Feature; -use Tests\TestCase; +use Tests\TestCaseChild; -class ExampleTest extends TestCase +class ExampleTest extends TestCaseChild { /** * A basic test example. diff --git a/tests/TestCase.php b/tests/TestCaseChild.php similarity index 95% rename from tests/TestCase.php rename to tests/TestCaseChild.php index 1d3747f2..5333f9e8 100644 --- a/tests/TestCase.php +++ b/tests/TestCaseChild.php @@ -9,7 +9,7 @@ use Illuminate\Foundation\Testing\TestCase as BaseTestCase; use Illuminate\Support\Facades\Artisan; use JWTAuth; -abstract class TestCase extends BaseTestCase +abstract class TestCaseChild extends BaseTestCase { use CreatesApplication, RefreshDatabase, DatabaseMigrations; diff --git a/tests/Unit/Orders/ControllersLogic/ListOrderTrackingLogicTest.php b/tests/Unit/Orders/ControllersLogic/ListOrderTrackingLogicTest.php index f02bf70a..47a822cb 100644 --- a/tests/Unit/Orders/ControllersLogic/ListOrderTrackingLogicTest.php +++ b/tests/Unit/Orders/ControllersLogic/ListOrderTrackingLogicTest.php @@ -10,9 +10,9 @@ use Illuminate\Http\JsonResponse; use Illuminate\Http\Request; use Illuminate\Support\Facades\Artisan; use Mockery; -use Tests\TestCase; +use Tests\TestCaseChild; -class ListOrderTrackingLogicTest extends TestCase +class ListOrderTrackingLogicTest extends TestCaseChild { protected $listsOrderTrackingMock;