Ejemplo n.º 1
0
        public void EatTest()
        {
            //arrange
            BigDogs cl = new BigDogs();
            //act
            string food = cl.Eat();

            //assert
            Assert.AreEqual(food, "chew, chew, chew");
        }
Ejemplo n.º 2
0
        public void TalkTest()
        {
            //arrange
            BigDogs sc = new BigDogs();
            //act
            string sound = sc.Talk();

            //assert
            Assert.AreEqual(sound, "Roof Roof!!");
            //Assert.Fail();
        }