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

            Assert.Equal(expected, result);
        }
        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);
        }