public void Validate_WhenCalled_ReturnsValidator() { IGetCreditorAccountCollectionQuery sut = CreateSut(); IValidator result = sut.Validate(_validatorMockContext.ValidatorMock.Object, _accountingRepositoryMock.Object); Assert.That(result, Is.EqualTo(_validatorMockContext.ValidatorMock.Object)); }
public void Validate_WhenCalled_AssertShouldBeKnownValueWasCalledOnObjectValidator() { int accountingNumber = _fixture.Create <int>(); IGetCreditorAccountCollectionQuery sut = CreateSut(accountingNumber); sut.Validate(_validatorMockContext.ValidatorMock.Object, _accountingRepositoryMock.Object); _validatorMockContext.ObjectValidatorMock.Verify(m => m.ShouldBeKnownValue( It.Is <int>(value => value == accountingNumber), It.IsNotNull <Func <int, Task <bool> > >(), It.Is <Type>(type => type == sut.GetType()), It.Is <string>(field => string.CompareOrdinal(field, "AccountingNumber") == 0), It.Is <bool>(allowNull => allowNull == false)), Times.Once); }
public void Validate_WhenAccountingRepositoryIsNull_ThrowsArgumentNullException() { IGetCreditorAccountCollectionQuery sut = CreateSut(); ArgumentNullException result = Assert.Throws <ArgumentNullException>(() => sut.Validate(_validatorMockContext.ValidatorMock.Object, null)); Assert.That(result.ParamName, Is.EqualTo("accountingRepository")); }