From 8826ce6a1d9f42b388d0f962b8f259158c269e92 Mon Sep 17 00:00:00 2001 From: mohammad-alavi Date: Sun, 3 Oct 2021 17:20:32 +0330 Subject: [PATCH] refactor, rename --- app/Containers/AppSection/Authentication/Tests/TestCase.php | 4 ++-- .../AppSection/Authentication/UI/API/Tests/ApiTestCase.php | 4 ++-- app/Containers/AppSection/Authorization/Tests/TestCase.php | 4 ++-- .../AppSection/Authorization/UI/API/Tests/ApiTestCase.php | 4 ++-- .../AppSection/Authorization/UI/CLI/Tests/CliTestCase.php | 4 ++-- app/Containers/AppSection/User/Tests/TestCase.php | 4 ++-- app/Containers/AppSection/User/UI/API/Tests/ApiTestCase.php | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/app/Containers/AppSection/Authentication/Tests/TestCase.php b/app/Containers/AppSection/Authentication/Tests/TestCase.php index d70acb743..be2fcaf10 100644 --- a/app/Containers/AppSection/Authentication/Tests/TestCase.php +++ b/app/Containers/AppSection/Authentication/Tests/TestCase.php @@ -2,7 +2,7 @@ namespace App\Containers\AppSection\Authentication\Tests; -use App\Ship\Parents\Tests\PhpUnit\TestCase as ShipTestCase; +use App\Ship\Parents\Tests\PhpUnit\TestCase as ParentTestCase; /** * Class TestCase. @@ -12,7 +12,7 @@ * * NOTE: API, WEB & CLI specific TestCase classes are located inside their own respective folders e.g. UI/API/Tests/ApiTestCase.php */ -class TestCase extends ShipTestCase +class TestCase extends ParentTestCase { // .. } diff --git a/app/Containers/AppSection/Authentication/UI/API/Tests/ApiTestCase.php b/app/Containers/AppSection/Authentication/UI/API/Tests/ApiTestCase.php index 7e362ad06..867e9dce2 100644 --- a/app/Containers/AppSection/Authentication/UI/API/Tests/ApiTestCase.php +++ b/app/Containers/AppSection/Authentication/UI/API/Tests/ApiTestCase.php @@ -2,7 +2,7 @@ namespace App\Containers\AppSection\Authentication\UI\API\Tests; -use App\Ship\Parents\Tests\PhpUnit\TestCase as ShipTestCase; +use App\Ship\Parents\Tests\PhpUnit\TestCase as ParentTestCase; use Illuminate\Support\Facades\Config; use Illuminate\Support\Facades\DB; @@ -11,7 +11,7 @@ * * This is the container API TestCase class. Use this class to add your container specific API related helper functions. */ -class ApiTestCase extends ShipTestCase +class ApiTestCase extends ParentTestCase { private bool $testingFilesCreated = false; private string $publicFilePath; diff --git a/app/Containers/AppSection/Authorization/Tests/TestCase.php b/app/Containers/AppSection/Authorization/Tests/TestCase.php index 2569ac11e..8c0e1464a 100644 --- a/app/Containers/AppSection/Authorization/Tests/TestCase.php +++ b/app/Containers/AppSection/Authorization/Tests/TestCase.php @@ -2,7 +2,7 @@ namespace App\Containers\AppSection\Authorization\Tests; -use App\Ship\Parents\Tests\PhpUnit\TestCase as ShipTestCase; +use App\Ship\Parents\Tests\PhpUnit\TestCase as ParentTestCase; /** * Class TestCase @@ -12,7 +12,7 @@ * * NOTE: API, WEB & CLI specific TestCase classes are located inside their own respective folders e.g. UI/API/Tests/ApiTestCase.php */ -class TestCase extends ShipTestCase +class TestCase extends ParentTestCase { // .. } diff --git a/app/Containers/AppSection/Authorization/UI/API/Tests/ApiTestCase.php b/app/Containers/AppSection/Authorization/UI/API/Tests/ApiTestCase.php index f11e28eb7..b19274b35 100644 --- a/app/Containers/AppSection/Authorization/UI/API/Tests/ApiTestCase.php +++ b/app/Containers/AppSection/Authorization/UI/API/Tests/ApiTestCase.php @@ -2,14 +2,14 @@ namespace App\Containers\AppSection\Authorization\UI\API\Tests; -use App\Ship\Parents\Tests\PhpUnit\TestCase as ShipTestCase; +use App\Ship\Parents\Tests\PhpUnit\TestCase as ParentTestCase; /** * Class ApiTestCase. * * This is the container API TestCase class. Use this class to add your container specific API related helper functions. */ -class ApiTestCase extends ShipTestCase +class ApiTestCase extends ParentTestCase { // .. } diff --git a/app/Containers/AppSection/Authorization/UI/CLI/Tests/CliTestCase.php b/app/Containers/AppSection/Authorization/UI/CLI/Tests/CliTestCase.php index 52efaa1cf..016b876c2 100644 --- a/app/Containers/AppSection/Authorization/UI/CLI/Tests/CliTestCase.php +++ b/app/Containers/AppSection/Authorization/UI/CLI/Tests/CliTestCase.php @@ -2,14 +2,14 @@ namespace App\Containers\AppSection\Authorization\UI\CLI\Tests; -use App\Ship\Parents\Tests\PhpUnit\TestCase as ShipTestCase; +use App\Ship\Parents\Tests\PhpUnit\TestCase as ParentTestCase; /** * Class CliTestCase. * * This is the container CLI TestCase class. Use this class to add your container specific CLI related helper functions. */ -class CliTestCase extends ShipTestCase +class CliTestCase extends ParentTestCase { // .. } diff --git a/app/Containers/AppSection/User/Tests/TestCase.php b/app/Containers/AppSection/User/Tests/TestCase.php index 1a8c70202..14fe26294 100644 --- a/app/Containers/AppSection/User/Tests/TestCase.php +++ b/app/Containers/AppSection/User/Tests/TestCase.php @@ -2,7 +2,7 @@ namespace App\Containers\AppSection\User\Tests; -use App\Ship\Parents\Tests\PhpUnit\TestCase as ShipTestCase; +use App\Ship\Parents\Tests\PhpUnit\TestCase as ParentTestCase; /** * Class TestCase @@ -12,7 +12,7 @@ * * NOTE: API, WEB & CLI specific TestCase classes are located inside their own respective folders e.g. UI/API/Tests/ApiTestCase.php */ -class TestCase extends ShipTestCase +class TestCase extends ParentTestCase { // .. } diff --git a/app/Containers/AppSection/User/UI/API/Tests/ApiTestCase.php b/app/Containers/AppSection/User/UI/API/Tests/ApiTestCase.php index d23504c1e..93cfc1366 100644 --- a/app/Containers/AppSection/User/UI/API/Tests/ApiTestCase.php +++ b/app/Containers/AppSection/User/UI/API/Tests/ApiTestCase.php @@ -2,14 +2,14 @@ namespace App\Containers\AppSection\User\UI\API\Tests; -use App\Ship\Parents\Tests\PhpUnit\TestCase as ShipTestCase; +use App\Ship\Parents\Tests\PhpUnit\TestCase as ParentTestCase; /** * Class ApiTestCase. * * This is the container API TestCase class. Use this class to add your container specific API related helper functions. */ -class ApiTestCase extends ShipTestCase +class ApiTestCase extends ParentTestCase { // .. }