public void FamousLyricIJustCalledToSay()
        {
            //Arrange
            UnitTestMethods test = new UnitTestMethods();

            //Act
            string actual = test.FamousLyricIJustCalledToSay();

            //Assert
            Assert.Equal("I Love You!", actual);
        }