public void GetComment()
        {
            //Arrange
            String        Expected      = "SqlComm*en/t";
            String        Input         = "A String /*SqlComm*en/t*/ asdf";
            LineProcessor LineProcessor = new LineProcessor(Input);
            //Act
            String Actual = LineProcessor.GetComment();

            //Assert
            Assert.AreEqual(Expected, Actual);
        }