public void CheckLionHeight() { ICat c = new LionCat(); Assert.Equal(1100, c.AverageHeight); }
public void CheckFeedLion() { ICat c = new LionCat(); Assert.Equal("Roar!!!!", c.Eat); }
public void CheckLionAfterEating() { ICat c = new LionCat(); Assert.Equal("Roar!!!!", c.AfterEat()); }