예제 #1
0
        public void Service_FaturamentoLoterica_Deveria_Chamar_GetAll_do_Repository()
        {
            List <FaturamentoLoterica> faturamentosLoterica = Loterica.Common.Tests.Lotericas.ObjectMother.GetFaturamentos();

            _faturamentoLotericaRepository
            .Setup(x => x.GetAll())
            .Returns(faturamentosLoterica);

            List <FaturamentoLoterica> faturamentosRecebidos = _service.PegarTodos();

            _faturamentoLotericaRepository
            .Verify(x => x.GetAll());

            faturamentosRecebidos.Should().BeEquivalentTo(faturamentosLoterica);
        }
예제 #2
0
        public void Integration_PegarTodosOsFaturamentoLoterica_Devedia_Buscar_Corretamente()
        {
            List <FaturamentoLoterica> f = _service.PegarTodos();

            f.Count.Should().BeGreaterThan(0);
        }