Exemple #1
0
        public void ParrotscanMimic()
        {
            GreyParrot greyParrot = new GreyParrot();

            string move     = "touch the toe";
            string expected = "I like mimic human talk!";

            Assert.Equal(expected, greyParrot.Mimic(move));
        }
Exemple #2
0
        public void GreyparrotIsBird()
        {
            GreyParrot greyParrot = new GreyParrot();

            Assert.True(greyParrot is Bird);
        }