public async Task When_The_Message_Is_Already_In_The_Inbox_Async() { await _sqlInbox.AddAsync(_raisedCommand, _contextKey); _exception = await Catch.ExceptionAsync(() => _sqlInbox.AddAsync(_raisedCommand, _contextKey)); //_should_succeed_even_if_the_message_is_a_duplicate _exception.Should().BeNull(); var exists = await _sqlInbox.ExistsAsync <MyCommand>(_raisedCommand.Id, _contextKey); exists.Should().BeTrue(); }
public async Task When_Writing_A_Message_To_The_Inbox_Async() { await _sqlInbox.AddAsync(_raisedCommand, _contextKey); _storedCommand = await _sqlInbox.GetAsync <MyCommand>(_raisedCommand.Id, _contextKey); //_should_read_the_command_from_the__sql_inbox _storedCommand.Should().NotBeNull(); //_should_read_the_command_value _storedCommand.Value.Should().Be(_raisedCommand.Value); //_should_read_the_command_id _storedCommand.Id.Should().Be(_raisedCommand.Id); }
public async Task When_Writing_A_Message_To_The_Inbox_Async() { await _sqlInbox.AddAsync(_raisedCommand, _contextKey); _storedCommand = await _sqlInbox.GetAsync <MyCommand>(_raisedCommand.Id, _contextKey); //_should_read_the_command_from_the__sql_inbox AssertionExtensions.Should((object)_storedCommand).NotBeNull(); //_should_read_the_command_value AssertionExtensions.Should((string)_storedCommand.Value).Be(_raisedCommand.Value); //_should_read_the_command_id AssertionExtensions.Should((Guid)_storedCommand.Id).Be(_raisedCommand.Id); }