Exemple #1
0
        public void Prueba_nuevo_Factura_fail()
        {
            AddFactura a = new AddFactura();

            a.coneccion = new Coneccion();

            a.coneccion.SetCadena("data source = Otra vez falle; initial catalog = Taller; integrated security = True;");

            Assert.IsFalse(a.AgregarFactura("A", 12, "Juan", "Ciudad", "4566-k"));
        }
Exemple #2
0
        public void Prueba_ObtenerFactura()
        {
            AddFactura a = new AddFactura();

            a.coneccion = new Coneccion();

            a.coneccion.SetCadena("data source = LAPTOP-IFGR27P8; initial catalog = Taller; integrated security = True;");


            Assert.IsNotNull(a.getFacturas());
        }