public void ObtenerPorcentajeAparicionNumerosTest() { SistemaLoteriaChances sistemaLoteriaChances = new SistemaLoteriaChances(); List <PorcentajeNumeros> verificar = sistemaLoteriaChances.ObtenerPorcentajeAparicionNumeros(); Assert.AreNotEqual(null, verificar); }
public void ObtenerTopNumerosMasJugadosTest() { //Error SistemaLoteriaChances sistemaLoteriaChances = new SistemaLoteriaChances(); List <Resultado> verificar = sistemaLoteriaChances.ObtenerTopNumerosMasJugados(""); Assert.AreNotEqual(verificar, null); }
public void CrearSorteoTest() { //Error SistemaLoteriaChances sistemaLoteriaChances = new SistemaLoteriaChances(); Boolean verificar = sistemaLoteriaChances.CrearSorteo(new Sorteo()); Assert.AreEqual(false, verificar); }
public void GenerarReportePlanPremiosSorteoTest() { //Error SistemaLoteriaChances sistemaLoteriaChances = new SistemaLoteriaChances(); Boolean verificar = sistemaLoteriaChances.GenerarReportePlanPremiosSorteo(new Sorteo()); Assert.AreEqual(false, verificar); }
public void IniciarSesionValoresCorrectosTest() { SistemaLoteriaChances sistemaLoteriaChances = new SistemaLoteriaChances(); Usuario usuario = sistemaLoteriaChances.IniciarSesion("admin", "admin"); Assert.AreEqual(1, usuario.Rol); usuario = sistemaLoteriaChances.IniciarSesion("usuario", "usuario"); Assert.AreEqual(0, usuario.Rol); }