public void BearEatingReturnsString()
        {
            // Arrange
            Bear bearo = new Bear();
            // Act
            string actual   = bearo.Eating();
            string expected = "*Indistinct Screaming*";

            // Assert
            Assert.Equal(expected, actual);
        }