Skip to content

Commit

Permalink
Rename AbstractCommandTest (doctrine#10294)
Browse files Browse the repository at this point in the history
  • Loading branch information
derrabus authored Dec 12, 2022
1 parent bd11475 commit 9b723a8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
use Doctrine\Tests\OrmFunctionalTestCase;
use Symfony\Component\Console\Tester\CommandTester;

abstract class AbstractCommandTest extends OrmFunctionalTestCase
abstract class CommandTestCase extends OrmFunctionalTestCase
{
/** @param class-string<AbstractCommand> $commandClass */
protected function getCommandTester(string $commandClass): CommandTester
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use Doctrine\ORM\Tools\Console\Command\SchemaTool\CreateCommand;

class CreateCommandTest extends AbstractCommandTest
class CreateCommandTest extends CommandTestCase
{
/** @doesNotPerformAssertions */
public function testItPrintsTheSql(): void
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Doctrine\ORM\Tools\Console\Command\SchemaTool\DropCommand;
use Doctrine\Tests\ORM\Tools\Console\Command\SchemaTool\Models\Keyboard;

final class DropCommandTest extends AbstractCommandTest
final class DropCommandTest extends CommandTestCase
{
/** @doesNotPerformAssertions */
public function testItPrintsTheSql(): void
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use Doctrine\ORM\Tools\Console\Command\SchemaTool\UpdateCommand;

class UpdateCommandTest extends AbstractCommandTest
class UpdateCommandTest extends CommandTestCase
{
/** @doesNotPerformAssertions */
public function testItPrintsTheSql(): void
Expand Down

0 comments on commit 9b723a8

Please sign in to comment.