Esempio n. 1
0
        public void CheckLionHeight()
        {
            ICat c = new LionCat();

            Assert.Equal(1100, c.AverageHeight);
        }
Esempio n. 2
0
        public void CheckFeedLion()
        {
            ICat c = new LionCat();

            Assert.Equal("Roar!!!!", c.Eat);
        }
Esempio n. 3
0
        public void CheckLionAfterEating()
        {
            ICat c = new LionCat();

            Assert.Equal("Roar!!!!", c.AfterEat());
        }