示例#1
0
        public void BuscarBitacoraSemanalPorFecha()
        {
            DateTime fechaHoy     = DateTime.Today;
            DateTime fechaSemana  = bitacora.CorrerFechaALunes(fechaHoy);
            DateTime fechaABuscar = new DateTime(fechaSemana.Year, fechaSemana.Month, fechaSemana.Day, 00, 00, 00);

            Assert.AreNotEqual(bitacora.BuscarBitacoraSemanalPorFecha(fechaABuscar), -1);
        }