@Test public void testGetRecords() throws IOException {
final CSVParser parser=CSVParser.parse(CSV_INPUT,CSVFormat.DEFAULT.withIgnoreSurroundingSpaces());
final List records=parser.getRecords();
assertEquals(RESULT.length,records.size());
assertTrue(records.size() > 0);
for (int i=0; i < RESULT.length; i++) {
assertArrayEquals(RESULT[i],records.get(i).values());
}
parser.close();
}