@@ -366,7 +366,7 @@ public function test_not_receiving_when_no_event_mapping(): void
366366 [$ distributedTicketQueue ],
367367 DistributedServiceMap::initialize ()
368368 ->withCommandMapping (targetServiceName: TestServiceName::TICKET_SERVICE , channelName: $ ticketChannelName )
369- // No event mapping - so no events should be received
369+ // No event mapping - so no events should be received
370370 );
371371 $ ticketService = $ this ->bootstrapEcotone (TestServiceName::TICKET_SERVICE , ['Test\Ecotone\Messaging\Fixture\Distributed\DistributedEventBus\ReceiverTicket ' ], [new \Test \Ecotone \Messaging \Fixture \Distributed \DistributedEventBus \ReceiverTicket \TicketServiceReceiver ()], $ distributedTicketQueue );
372372
@@ -812,7 +812,7 @@ public function getConsumed(): array
812812 $ this ->assertNull ($ consumerService2 ->getMessageChannel ($ service2Name )->receive ());
813813 }
814814
815- public function test_cannot_use_legacy_withServiceMapping_after_withCommandMapping (): void
815+ public function test_cannot_use_legacy_with_service_mapping_after_with_command_mapping (): void
816816 {
817817 $ this ->expectException (ConfigurationException::class);
818818 $ this ->expectExceptionMessage ('Cannot use withServiceMapping() after withCommandMapping() or withEventMapping() ' );
@@ -822,7 +822,7 @@ public function test_cannot_use_legacy_withServiceMapping_after_withCommandMappi
822822 ->withServiceMapping ('service2 ' , 'channel2 ' );
823823 }
824824
825- public function test_cannot_use_legacy_withServiceMapping_after_withEventMapping (): void
825+ public function test_cannot_use_legacy_with_service_mapping_after_with_event_mapping (): void
826826 {
827827 $ this ->expectException (ConfigurationException::class);
828828 $ this ->expectExceptionMessage ('Cannot use withServiceMapping() after withCommandMapping() or withEventMapping() ' );
@@ -832,7 +832,7 @@ public function test_cannot_use_legacy_withServiceMapping_after_withEventMapping
832832 ->withServiceMapping ('service2 ' , 'channel2 ' );
833833 }
834834
835- public function test_cannot_use_withCommandMapping_after_legacy_withServiceMapping (): void
835+ public function test_cannot_use_with_command_mapping_after_legacy_with_service_mapping (): void
836836 {
837837 $ this ->expectException (ConfigurationException::class);
838838 $ this ->expectExceptionMessage ('Cannot use withCommandMapping() after withServiceMapping() ' );
@@ -842,7 +842,7 @@ public function test_cannot_use_withCommandMapping_after_legacy_withServiceMappi
842842 ->withCommandMapping ('service2 ' , 'channel2 ' );
843843 }
844844
845- public function test_cannot_use_withEventMapping_after_legacy_withServiceMapping (): void
845+ public function test_cannot_use_with_event_mapping_after_legacy_with_service_mapping (): void
846846 {
847847 $ this ->expectException (ConfigurationException::class);
848848 $ this ->expectExceptionMessage ('Cannot use withEventMapping() after withServiceMapping() ' );
0 commit comments