public void ExistsAsync_Should_ThrowException_IfArgumentIsNull() { Assert.ThrowsAsync <ArgumentNullException>(() => _genericServiceNullable.ExistsAsync((int?)null)); }
public void ExistsAsync_Should_InvokeGenericRepositoryExitsAsync_Once() { var returnValue = _genericService.ExistsAsync(_testId); _mockGenericRepository.Verify(x => x.ExistsAsync(_testId), Times.Once); }