public void TestGetAll() { var data = new Collection <PedidoLanche> { new PedidoLanche { Id = 1, IdLanche = 1, ValorFinal = 30 }, new PedidoLanche { Id = 2, IdLanche = 2, ValorFinal = 50 }, new PedidoLanche { Id = 3, IdLanche = 3, ValorFinal = 25 }, }; _pedidoLancheRepositoryMock.Setup(theObject => theObject.GetAll()).Returns(data); var ingredientes = _pedidoLancheBll.GetAll(); _pedidoLancheRepositoryMock.Verify(x => x.GetAll(), Times.Once()); Assert.Equal(3, ingredientes.Count()); }
public IEnumerable <PedidoLanche> GetAll() { var result = _pedidoLancheBll.GetAll(); return(result); }