Exemplo n.º 1
0
        public void FourthTest()
        {
            DateTime birthday = new DateTime(2015, 01, 30);

            Assert.AreEqual(PetersAge.HowOld(birthday), PetersAge.HowOld(birthday));
        }
Exemplo n.º 2
0
        public void SecondTest()
        {
            DateTime birthday = new DateTime(2014, 12, 23);

            Assert.AreEqual(PetersAge.HowOld(birthday), PetersAge.HowOld(birthday));
        }
Exemplo n.º 3
0
        public void ThirdTest()
        {
            DateTime birthday = new DateTime(1983, 09, 21);

            Assert.AreEqual(PetersAge.HowOld(birthday), PetersAge.HowOld(birthday));
        }
Exemplo n.º 4
0
        public void FirstTest()
        {
            DateTime birthday = new DateTime(2015, 10, 16);

            Assert.AreEqual(PetersAge.HowOld(birthday), PetersAge.HowOld(birthday));
        }