Example #1
0
        public void TestCebidaeInheritsPrimates()
        {
            Cebidae capuchin = new Cebidae();

            Assert.Equal("Opposable thumbs allow primates to have a strong hold on things.", capuchin.UsePowerGrip());
        }
Example #2
0
        public void TestCebidaeAbstraction()
        {
            Cebidae capuchin = new Cebidae();

            Assert.Equal("Cebidae communicate with sounds and gestures.", capuchin.Communicate());
        }
Example #3
0
        public void TestCebidaeInheritsMammalia()
        {
            Cebidae capuchin = new Cebidae();

            Assert.Equal("Mammals nurse their young with milk.", capuchin.Nurse());
        }