public void TestGenerarReporteDeVentasPorMes() { Efectivo objEfectivo = new Efectivo(); List <OrdenDeVenta> unaVenta = VentaBLL.GenerarReporteDeVentasPorMes(6, 2021); Assert.AreEqual(objEfectivo.GetType(), unaVenta[0].MetodoDePago.GetType()); }
public void TestGenerarReporteDeVentasPorSemana() { Efectivo objEfectivo = new Efectivo(); var fechatest = new DateTime(2021, 6, 17, 0, 0, 0); List <OrdenDeVenta> unaVenta = VentaBLL.GenerarReporteDeVentasPorSemana(fechatest); Assert.AreEqual(objEfectivo.GetType(), unaVenta[0].MetodoDePago.GetType()); }