public void TestActivarDesactivarMostrarListaCuentasPorPagarProveedor() { string nombreProveedor = "HiperDental"; DAOCuentasPorPagar SqlCuentaPP = new DAOCuentasPorPagar(); List<Entidad> otraLista = SqlCuentaPP.ActivarDesactivarMostrarListaCuentasPorPagarProveedor(nombreProveedor); Assert.IsNotNull(otraLista); }
public void TestAbonarConsultarCuentasPorPagarFechas() { string fechaInicio = "2012/01/01"; string fechaFin = "2012/12/12"; DAOCuentasPorPagar SqlCuentaPP = new DAOCuentasPorPagar(); List<Entidad> miLista = SqlCuentaPP.AbonarConsultarCuentasPorPagarFechas(fechaInicio, fechaFin); Assert.IsNotNull(miLista); }
public void testAbonarConsultarCuentasPorPagar() { string provedor = "HiperDental"; string fechaInicio = "2012/01/01"; string fechaFin = "2012/12/12"; DAOCuentasPorPagar SqlCuentaPP = new DAOCuentasPorPagar(); List<Entidad> miLista = SqlCuentaPP.AbonarConsultarCuentasPorPagar(fechaInicio, fechaFin, provedor); Assert.IsNotNull(miLista); }
public void TestActivarDesactivarCpp() { Proveedor miProveedor = new Proveedor(); miProveedor.Nombre = "Hiperdental"; NumeroCuentaBanco miCuentaBanco = new NumeroCuentaBanco(); miCuentaBanco.NroCuentaBanco = "847384001"; Abono miAbono = new Abono(); List<Abono> listaAbono = new List<Abono>(); listaAbono.Add(miAbono); Empleado miEmpleado = new Empleado(); CuentaPorPagar miCuentaPP = new CuentaPorPagar("1", "2009/02/02", "2011/03/03", "contado", "activo", "proveedor ", "detallito", 222, 222, miProveedor, miEmpleado, miCuentaBanco, listaAbono); DAOCuentasPorPagar SqlCuentaPP = new DAOCuentasPorPagar(); bool Activo = SqlCuentaPP.ActivarDesactivarCpp(miCuentaPP); Assert.IsTrue(Activo); }
public void testConsultarCuentaPorPagar() { string idCuentaPorPagar = "1"; Proveedor miProveedor = new Proveedor(); miProveedor.Nombre = "Hiperdental"; NumeroCuentaBanco miCuentaBanco = new NumeroCuentaBanco(); miCuentaBanco.NroCuentaBanco = "847384001"; Abono miAbono = new Abono(); List<Abono> listaAbono = new List<Abono>(); listaAbono.Add(miAbono); Empleado miEmpleado = new Empleado(); Entidad miCuentaPP = new CuentaPorPagar("1", "2009/02/02", "2011/03/03", "credito", "activo", "proveedor ", "detallazo", 222, 0, miProveedor, miEmpleado, miCuentaBanco, listaAbono); DAOCuentasPorPagar SqlCuentaPP = new DAOCuentasPorPagar(); Entidad otraCuenta = new CuentaPorPagar(); otraCuenta = SqlCuentaPP.ConsultarCuentaPorPagar(idCuentaPorPagar); Assert.IsNotNull(otraCuenta); Assert.AreEqual(otraCuenta, miCuentaPP); }
public void TestObtenerTodasCuentasPorPagar() { string nombreProveedor = "HiperDental"; DAOCuentasPorPagar SqlCuentaPP = new DAOCuentasPorPagar(); List <Entidad> otraLista = SqlCuentaPP.MostrarListaCuentasPorPagar(nombreProveedor); Assert.IsNotNull(otraLista); }
public void TestMostarCuentasPorPagarFechasProveedor() { string provedor = "HiperDental"; string fechaInicio = "2012/01/01"; string fechaFin = "2012/12/12"; DAOCuentasPorPagar SqlCuentaPP = new DAOCuentasPorPagar(); List<Entidad> miLista = SqlCuentaPP.MostarCuentasPorPagarFechasProveedor(provedor, fechaInicio, fechaFin); Assert.IsNotNull(miLista); Assert.AreEqual(miLista.Count, 2); }
public void TestllenarAbonarCpp2() { string nombreProveedor = "HiperDental"; Int64 codigoCuenta = 2; DAOCuentasPorPagar SqlCuentaPP = new DAOCuentasPorPagar(); Entidades.EEntidad.Entidad miCuentaPP = new CuentaPorPagar(); miCuentaPP = SqlCuentaPP.llenarAbonarCpp2(nombreProveedor, codigoCuenta); Assert.IsNotNull(miCuentaPP); }