Пример #1
0
        public void Validate_WhenCalled_ReturnsValidator()
        {
            IIdentityIdentificationQuery sut = CreateSut();

            IValidator result = sut.Validate(_validatorMockContext.ValidatorMock.Object, _securityRepositoryMock.Object);

            Assert.That(result, Is.EqualTo(_validatorMockContext.ValidatorMock.Object));
        }
Пример #2
0
        public void Validate_WhenSecurityRepositoryIsNull_ThrowsArgumentNullException()
        {
            IIdentityIdentificationQuery sut = CreateSut();

            ArgumentNullException result = Assert.Throws <ArgumentNullException>(() => sut.Validate(_validatorMockContext.ValidatorMock.Object, null));

            Assert.That(result.ParamName, Is.EqualTo("securityRepository"));
        }
Пример #3
0
        public void Validate_WhenCalled_AssertShouldBeGreaterThanZeroWasCalledOnIntegerValidator()
        {
            int identifier = _fixture.Create <int>();
            IIdentityIdentificationQuery sut = CreateSut(identifier);

            sut.Validate(_validatorMockContext.ValidatorMock.Object, _securityRepositoryMock.Object);

            _validatorMockContext.IntegerValidatorMock.Verify(m => m.ShouldBeGreaterThanZero(
                                                                  It.Is <int>(value => value == identifier),
                                                                  It.Is <Type>(type => type == sut.GetType()),
                                                                  It.Is <string>(field => string.Compare(field, "Identifier", false) == 0)),
                                                              Times.Once());
        }