Skip to content

Commit

Permalink
refactor, rename
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohammad-Alavi committed Oct 3, 2021
1 parent 452a4c7 commit 8826ce6
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions app/Containers/AppSection/Authentication/Tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
{
// ..
}
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand All @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions app/Containers/AppSection/Authorization/Tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
{
// ..
}
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
// ..
}
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
// ..
}
4 changes: 2 additions & 2 deletions app/Containers/AppSection/User/Tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
{
// ..
}
4 changes: 2 additions & 2 deletions app/Containers/AppSection/User/UI/API/Tests/ApiTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
// ..
}

0 comments on commit 8826ce6

Please sign in to comment.