Esempio n. 1
0
        public void Validate_WhenCalled_ReturnsValidator()
        {
            IDeletePaymentTermCommand sut = CreateSut();

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

            Assert.That(result, Is.EqualTo(_validatorMockContext.ValidatorMock.Object));
        }
Esempio n. 2
0
        public void Validate_WhenAccountingRepositoryIsNull_ThrowsArgumentNullException()
        {
            IDeletePaymentTermCommand sut = CreateSut();

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

            Assert.That(result.ParamName, Is.EqualTo("accountingRepository"));
        }
Esempio n. 3
0
        public async Task ExecuteAsync_WhenCalled_AssertDeletePaymentTermAsyncWasCalledOnAccountingRepository()
        {
            CommandHandler sut = CreateSut();

            int number = _fixture.Create <int>();
            IDeletePaymentTermCommand command = CreateCommandMock(number).Object;
            await sut.ExecuteAsync(command);

            _accountingRepositoryMock.Verify(m => m.DeletePaymentTermAsync(It.Is <int>(value => value == number)), Times.Once);
        }
Esempio n. 4
0
        public void Validate_WhenCalled_AssertShouldBeDeletableWasCalledOnObjectValidator()
        {
            int number = _fixture.Create <int>();
            IDeletePaymentTermCommand sut = CreateSut(number);

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

            _validatorMockContext.ObjectValidatorMock.Verify(m => m.ShouldBeDeletable(
                                                                 It.Is <int>(value => value == number),
                                                                 It.IsNotNull <Func <int, Task <IPaymentTerm> > >(),
                                                                 It.Is <Type>(type => type == sut.GetType()),
                                                                 It.Is <string>(field => string.CompareOrdinal(field, "Number") == 0),
                                                                 It.Is <bool>(value => value == false)),
                                                             Times.Once());
        }