}
@Test
public void testOneRowWithQuoteCharacters() throws IOException {
String data = "TRMMMXN128F42936A5,\"Symphony No. 1 G minor \"\"Sinfonie Serieuse\"\"/Allegro con energia\",SOZVAPQ12A8C13B63C,\"Berwald: Symphonies Nos. 1/2/3/4\",AR2NS5Y1187FB5879D";
CSVReader reader = new CSVReader(new StringReader(data));
String[] row = reader.next();
compareRows("first row read incorrectly",
new String[]{"TRMMMXN128F42936A5",
"Symphony No. 1 G minor \"Sinfonie Serieuse\"/Allegro con energia",
"SOZVAPQ12A8C13B63C",
"Berwald: Symphonies Nos. 1/2/3/4",
"AR2NS5Y1187FB5879D"},
row);
compareRows("reading not terminated correctly", null, reader.next());
}