Exemplo n.º 1
0
        public void Dates_DaysAgo()
        {
            TimeSpan t        = new TimeSpan(30, 0, 0, 0);
            DateTime dtVerify = DateTime.Now.Subtract(t);

            DateTime dt = Dates.DaysAgo(30);

            Assert.IsTrue(dtVerify.Date == dt.Date);
        }