Example #1
0
        public void Today_Is_Not_Joey_Birthday()
        {
            var          expected     = "No, Sorry";
            JoeyBirthday joeyBirthday = new JoeyBirthday();

            Assert.AreEqual(expected, joeyBirthday.IsTodayJoeyBirthday());
        }
Example #2
0
        public void Today_Is_Joey_Birthday1()
        {
            var          expected     = "Happy Birthday";
            JoeyBirthday joeyBirthday = new JoeyBirthday(new DateTime(1990, 11, 28));

            Assert.AreEqual(expected, joeyBirthday.IsTodayJoeyBirthday());
        }