Exemplo n.º 1
0
        public void TestHowYorkieScratches()
        {
            Yorkie my_dog = new Yorkie();

            Assert.AreEqual("Itch",my_dog.Scratch()); // We tried Assert.Equals but it says it shouldn't be used.
        }
Exemplo n.º 2
0
        public void TestHowYorkieWhines()
        {
            Yorkie my_dog = new Yorkie();

            Assert.AreEqual("Ugh",my_dog.Whine()); // We tried Assert.Equals but it says it shouldn't be used.
        }
Exemplo n.º 3
0
        public void TestHowYorkieBarks()
        {
            Yorkie my_dog = new Yorkie();

            Assert.AreEqual("Yip",my_dog.Bark()); // We tried Assert.Equals but it says it shouldn't be used.
        }