From cdcc28afe7c1cabcf273bbc9f7a712fe994630a1 Mon Sep 17 00:00:00 2001 From: Sergei Predvoditelev Date: Thu, 21 Dec 2023 16:20:09 +0300 Subject: [PATCH] improve --- tests/Common/Command/AbstractCreateCommandTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Common/Command/AbstractCreateCommandTest.php b/tests/Common/Command/AbstractCreateCommandTest.php index 4bccb6cf..7d90de1d 100644 --- a/tests/Common/Command/AbstractCreateCommandTest.php +++ b/tests/Common/Command/AbstractCreateCommandTest.php @@ -992,7 +992,7 @@ public function down(MigrationBuilder \$b): void $this->assertEqualsWithoutLE($expectedMigrationCode, $generatedMigrationCode); } - public function testIncorrectCreatePath(): void + public function testIncorrectNewMigrationPath(): void { MigrationHelper::useMigrationsPath($this->container); @@ -1008,7 +1008,7 @@ public function testIncorrectCreatePath(): void $this->assertStringContainsString('Invalid path directory', $output); } - public function testWithoutCreatePath(): void + public function testWithoutNewMigrationPath(): void { MigrationHelper::useMigrationsPath($this->container); @@ -1063,7 +1063,7 @@ public function testWithoutNewMigrationNamespace(): void ); } - public function testWithCreatePathAndNamespace(): void + public function testWithNewMigrationPathAndNamespace(): void { MigrationHelper::useMigrationsPath($this->container); MigrationHelper::useMigrationsNamespace($this->container);