public void When_Handling_A_Command_With_A_Inbox_Enabled()
        {
            _commandProcessor.Send(_command);

            //should_store_the_command_to_the_inbox
            _inbox.Get <MyCommand>(_command.Id, _contextKey).Value.Should().Be(_command.Value);
        }