예제 #1
0
        public void GorillaSpeak()
        {
            Gorrilla testGorilla = new Gorrilla();
            string   result      = testGorilla.GorillaLanguages();
            string   expected    = "Gorilla's can communicate in sign language";

            Assert.Equal(expected, result);
        }
예제 #2
0
        public bool GorillaWatch()
        {
            Gorrilla testGorilla = new Gorrilla();
            string   result      = testGorilla.ScaryGorilla();
            string   expected    = "Gorilla's are super strong and scary and their size is ubquitous!";

            Assert.Equal(expected, result);

            return(true);
        }