public bool RhinoBlast()
        {
            Rhino  testRhino = new Rhino();
            string result    = testRhino.RhinoNoise();
            string expected  = "Rhino's blast off with their horns!";

            Assert.Equal(expected, result);

            return(true);
        }