public void RhinoHornCleaning()
        {
            Rhino  testRhino = new Rhino();
            string result    = testRhino.RhinoHornClean();
            string expected  = "Rhino's clean their horns once a month.";

            Assert.Equal(expected, result);
        }