Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Removed spurious backslash (wiki formatting cruft)

...

Code Block
titleCSVTests.java
@Test
public void testSingleWord() throws IOException, RecognitionException \{
    CSVParser parser = createParser("Red");
    String result = parser.field();
    assert result.equals("Red") : "Expected Red, found " + result;
}

...