Exemplo n.º 1
0
        public void TestHominidaeAbstraction()
        {
            Hominidae human = new Hominidae();

            Assert.Equal("Hominidae can use speech or sign language to communicate.", human.Communicate());
        }
Exemplo n.º 2
0
        public void TestHominidaeInheritsMammalia()
        {
            Hominidae human = new Hominidae();

            Assert.Equal("Mammals nurse their young with milk.", human.Nurse());
        }
Exemplo n.º 3
0
        public void TestHominidaeInheritsPrimates()
        {
            Hominidae human = new Hominidae();

            Assert.Equal("Opposable thumbs allow primates to have a strong hold on things.", human.UsePowerGrip());
        }