public async Task ThenSenderAccountShouldBePopulatedOnSendTransferConnectionInvitationResponse() { _response = await _handler.Handle(_query); Assert.That(_response, Is.Not.Null); Assert.That(_response.SenderAccount, Is.Not.Null); Assert.That(_response.SenderAccount.Id, Is.EqualTo(_senderAccount.Id)); }
public async Task ThenShouldReturnSendTransferConnectionInvitationResponse() { _response = await _handler.Handle(_query); Assert.That(_response, Is.Not.Null); Assert.That(_response.ReceiverAccount, Is.Not.Null); Assert.That(_response.ReceiverAccount.Id, Is.EqualTo(_receiverAccount.Id)); }