fields[4] = "Joe said, \"This is a test of a \nlong broken string,\" and Sally said, \"I bet it won't work.\" ";
// working string
// fields[4] = "Joe said, \"This is a test of a \nlong broken string,\" and Sally said, \"I bet it won't work.\"";
CSVWriter writer = new CSVWriter(new FileWriter(filePath));
writer.writeNext(fields); // let's make 3 rows so we can see it cleanly in Excel.
writer.writeNext(fields);
writer.writeNext(fields);
writer.close();
testRawCsvRead(fields[4]);