Exemplo n.º 1
0
        public void TestCebidaeInheritsPrimates()
        {
            Cebidae capuchin = new Cebidae();

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

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

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