예제 #1
0
        public void ObtenerPorcentajeAparicionNumerosTest()
        {
            SistemaLoteriaChances    sistemaLoteriaChances = new SistemaLoteriaChances();
            List <PorcentajeNumeros> verificar             = sistemaLoteriaChances.ObtenerPorcentajeAparicionNumeros();

            Assert.AreNotEqual(null, verificar);
        }
예제 #2
0
        public void ObtenerTopNumerosMasJugadosTest()
        {
            //Error
            SistemaLoteriaChances sistemaLoteriaChances = new SistemaLoteriaChances();
            List <Resultado>      verificar             = sistemaLoteriaChances.ObtenerTopNumerosMasJugados("");

            Assert.AreNotEqual(verificar, null);
        }
예제 #3
0
        public void CrearSorteoTest()
        {
            //Error
            SistemaLoteriaChances sistemaLoteriaChances = new SistemaLoteriaChances();
            Boolean verificar = sistemaLoteriaChances.CrearSorteo(new Sorteo());

            Assert.AreEqual(false, verificar);
        }
예제 #4
0
        public void GenerarReportePlanPremiosSorteoTest()
        {
            //Error
            SistemaLoteriaChances sistemaLoteriaChances = new SistemaLoteriaChances();
            Boolean verificar = sistemaLoteriaChances.GenerarReportePlanPremiosSorteo(new Sorteo());

            Assert.AreEqual(false, verificar);
        }
예제 #5
0
        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);
        }