spec\MGDigital\BusQue\Handler\QueuedCommandHandlerSpec::it_can_queue_a_command_without_an_id PHP Метод

it_can_queue_a_command_without_an_id() публичный Метод

    public function it_can_queue_a_command_without_an_id()
    {
        $queuedCommand = new QueuedCommand('test_command');
        $this->queueDriver->queueCommand('test_queue', 'test_generated_id', 'serialized')->shouldBeCalled();
        $this->handleQueuedCommand($queuedCommand);
    }