public void When_The_Message_Is_Already_In_The_Inbox() { _pgSqlInbox.Add(_raisedCommand, _contextKey); _exception = Catch.Exception(() => _pgSqlInbox.Add(_raisedCommand, _contextKey)); //_should_succeed_even_if_the_message_is_a_duplicate _exception.Should().BeNull(); _pgSqlInbox.Exists <MyCommand>(_raisedCommand.Id, _contextKey).Should().BeTrue(); }
public void When_There_Is_No_Message_In_The_Sql_Inbox_And_Call_Exists() { Guid commandId = Guid.NewGuid(); _pgSqlInbox.Exists <MyCommand>(commandId, _contextKey).Should().BeFalse(); }