Exemple #1
0
        public void today_is_xmas()
        {
            var holiday = new HolidayForTest();

            holiday.Today = new DateTime(2020, 12, 25);
            Assert.AreEqual("Merry Xmas", holiday.SayHello());
        }
Exemple #2
0
 public void SetUp()
 {
     _holiday = new HolidayForTest();
 }