Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Syntax correction in test

...

Code Block
titleCSVTests.java fragment
@Test
public void testQuotedString() throws IOException, RecognitionException {
    String result = parser.parseField("\"Red, White, and Blue\"");
    assert result.equals("Red, White, and Blue") : "Expected <<Red, White, and Blue>>, but found <<" + result + ">>";
}

...