예제 #1
0
파일: Test.cs 프로젝트: LandoB/ExploringTDD
        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.
        }
예제 #2
0
파일: Test.cs 프로젝트: LandoB/ExploringTDD
        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.
        }
예제 #3
0
파일: Test.cs 프로젝트: LandoB/ExploringTDD
        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.
        }