public void GetInputWithoutComment_RemovesCommentAndTrims() { //Arrange String Expected = "A String"; String Input = "A String /*a|bbb|cccc*/"; LineProcessor LineProcessor = new LineProcessor(Input); //Act String Actual = LineProcessor.GetInputWithoutComment(); //Assert Assert.AreEqual(Expected, Actual); }