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