public void Service_Aposta_Deveria_BuscarTodos_Apostas_Corretamente() { List <Aposta> apostas = ObjectMother.GetApostas(); _apostaRepository .Setup(x => x.GetAll()) .Returns(apostas); List <Aposta> a = _service.PegarTodos(); _apostaRepository.Verify(x => x.GetAll()); a.Should().BeEquivalentTo(apostas); }
public void Integration_PegarTodasAsAposta_Corretamente() { List <Aposta> apostas = _service.PegarTodos(); apostas.Count.Should().BeGreaterThan(0); }