Example #1
0
        public void DayToDateTest()
        {
            string day1 = "tmr";                 // TODO: Initialize to an appropriate value

            DateTime expected1 = new DateTime(); // TODO: Initialize to an appropriate value

            expected1 = DateTime.Now;
            expected1 = expected1.AddDays(1);

            DateTime actual1;

            actual1 = Parser_Accessor.DayToDate(day1);
            Assert.AreEqual(expected1.ToString(), actual1.ToString());
            //Assert.Inconclusive("Verify the correctness of this test method.");
        }