public void When_The_Message_Is_Already_In_The_Inbox()
        {
            _exception = Catch.Exception(() => _mysqlInbox.Add(_raisedCommand, _contextKey));

            //_should_succeed_even_if_the_message_is_a_duplicate
            _exception.Should().BeNull();
            _mysqlInbox.Exists <MyCommand>(_raisedCommand.Id, _contextKey).Should().BeTrue();
        }
        public SqlInboxAddMessageTests()
        {
            _mysqlTestHelper = new MySqlTestHelper();
            _mysqlTestHelper.SetupCommandDb();

            _mysqlInbox    = new MySqlInbox(_mysqlTestHelper.InboxConfiguration);
            _raisedCommand = new MyCommand {
                Value = "Test"
            };
            _contextKey = "test-context";
            _mysqlInbox.Add(_raisedCommand, _contextKey);
        }