public void Sistema_Deveria_Buscar_Todos_Os_Emprestimo()
        {
            //Arrange
            Emprestimo resultEmprestimo = _emprestimoService.Add(_emprestimoDefault);

            //Action
            IList <Emprestimo> resultGetAll = _emprestimoService.GetAll();

            //Assert
            var ultimoEmprestimo = resultGetAll[resultGetAll.Count - 1];

            resultGetAll.Should().NotHaveCount(0);
            resultGetAll.Should().HaveCount(2);
            ultimoEmprestimo.Should().Equals(_emprestimoDefault);
        }
        public void EmprestimoService_GetAll_ShouldBeOk()
        {
            _mockRepositorio.Setup(m => m.GetAll()).Returns(new List <Emprestimo>());
            EmprestimoService service   = new EmprestimoService(_mockRepositorio.Object);
            List <Emprestimo> resultado = service.GetAll() as List <Emprestimo>;

            resultado.Should().NotBeNull();
            _mockRepositorio.Verify(repositorio => repositorio.GetAll());
        }
        public void Test_EmprestimoService_GetAll_Test_Should_BeOk()
        {
            _mock.Setup(x => x.GetAll()).Returns(new List <Emprestimo>()
            {
                _emprestimo
            });

            var obtido = Alvo.GetAll();

            _mock.Verify(x => x.GetAll());
            obtido.First().Should().Be(_emprestimo);
        }
Beispiel #4
0
        public void GetAll_Deveria_Retornar_Todos_Os_Emprestimos()
        {
            //Arrange
            IList <Emprestimo> _emprestimoDefaultList = EmprestimoObjectMother.DefaultListEmprestimos;

            _emprestimoRepositoryMockObject.Setup(p => p.GetAll()).Returns(_emprestimoDefaultList);

            //Action
            var resultEmprestimos = _emprestimoService.GetAll();

            //Assert
            _emprestimoRepositoryMockObject.Verify(x => x.GetAll());
            resultEmprestimos.Should().NotBeEmpty();
            resultEmprestimos.Should().HaveCount(3);
        }