ProophTest\ServiceBus\Plugin\Router\SingleHandlerRouterTest::it_fails_on_routing_a_second_command_before_first_definition_is_finished PHP Method

it_fails_on_routing_a_second_command_before_first_definition_is_finished() public method

    public function it_fails_on_routing_a_second_command_before_first_definition_is_finished()
    {
        $router = new CommandRouter();
        $router->route('ProophTest\\ServiceBus\\Mock\\DoSomething');
        $this->setExpectedException('\\Prooph\\ServiceBus\\Exception\\RuntimeException');
        $router->route('AnotherCommand');
    }