Skip to content

Commit

Permalink
test: abstract classes with the Test suffix are deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
xel1045 committed Mar 26, 2024
1 parent af132db commit ccddb6d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/Unit/Console/DbUpgradeCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Mockery as m;
use Symfony\Component\Process\ExecutableFinder;

class DbUpgradeCommandTest extends UnitTest
class DbUpgradeCommandTest extends TestCase
{
/**
* @var \Illuminate\Filesystem\Filesystem|\Mockery\LegacyMockInterface|\Mockery\MockInterface
Expand Down
4 changes: 2 additions & 2 deletions tests/Unit/UnitTest.php → tests/Unit/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
namespace Exolnet\DbUpgrade\Tests\Unit;

use Mockery;
use PHPUnit\Framework\TestCase;
use PHPUnit\Framework\TestCase as BaseTestCase;

abstract class UnitTest extends TestCase
abstract class TestCase extends BaseTestCase
{
public function tearDown(): void
{
Expand Down

0 comments on commit ccddb6d

Please sign in to comment.