}
@Test
public void testTwoRowsQuotes() throws IOException {
String data = "\"a\",\"b\",\"c\"\n\"d\",\"e\",\"f\"";
CSVReader reader = new CSVReader(new StringReader(data));
String[] row = reader.next();
compareRows("first row read incorrectly", new String[]{"a", "b", "c"},
row);
row = reader.next();
compareRows("second row read incorrectly", new String[]{"d", "e", "f"},
row);
compareRows("reading not terminated correctly", null, reader.next());
}