diff --git a/tests/Unit/Service/MessageDispatcherManagerTest.php b/tests/Unit/Service/MessageDispatcherManagerTest.php index 231cd34..2bddf97 100644 --- a/tests/Unit/Service/MessageDispatcherManagerTest.php +++ b/tests/Unit/Service/MessageDispatcherManagerTest.php @@ -38,7 +38,7 @@ public function testNoHandler(): void $this->messageDispatcherManager->dispatch($description); } - public function testSetupValidDispatcher(): void + public function testSetupInvalidDispatcher(): void { $description = 'invalid dispatcher'; $handler = function () {}; diff --git a/tests/Unit/Service/StateHandlerManagerTest.php b/tests/Unit/Service/StateHandlerManagerTest.php index 6340188..bacc6ef 100644 --- a/tests/Unit/Service/StateHandlerManagerTest.php +++ b/tests/Unit/Service/StateHandlerManagerTest.php @@ -42,7 +42,7 @@ public function testNoHandler(Action $action): void $this->stateHandlerManager->handle($state, $action, $this->params); } - public function testSetupValidHandler(): void + public function testSetupInvalidHandler(): void { $state = 'setup invalid handler'; $action = Action::SETUP; @@ -62,7 +62,7 @@ public function testSetupValidHandler(): void $this->stateHandlerManager->handle($state, $action, $this->params); } - public function testTeardownValidHandler(): void + public function testTeardownInvalidHandler(): void { $state = 'teardown invalid handler'; $action = Action::TEARDOWN;