Skip to content

Commit ccddb6d

Browse files
committed
test: abstract classes with the Test suffix are deprecated
1 parent af132db commit ccddb6d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/Unit/Console/DbUpgradeCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use Mockery as m;
88
use Symfony\Component\Process\ExecutableFinder;
99

10-
class DbUpgradeCommandTest extends UnitTest
10+
class DbUpgradeCommandTest extends TestCase
1111
{
1212
/**
1313
* @var \Illuminate\Filesystem\Filesystem|\Mockery\LegacyMockInterface|\Mockery\MockInterface
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
namespace Exolnet\DbUpgrade\Tests\Unit;
44

55
use Mockery;
6-
use PHPUnit\Framework\TestCase;
6+
use PHPUnit\Framework\TestCase as BaseTestCase;
77

8-
abstract class UnitTest extends TestCase
8+
abstract class TestCase extends BaseTestCase
99
{
1010
public function tearDown(): void
1111
{

0 commit comments

Comments
 (0)