Example #1
0
        static void DolphinInheritsGivesBirth()
        {
            Dolphin dolphin = new Dolphin();
            string  actual  = dolphin.GivesBirth();
            string  reply   = "Skippy the Dolphin gives birth and does not lay eggs because it is a mammal";

            Assert.Equal(reply, actual);
        }