Add test for CSV-57

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1307068 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2012-03-29 19:26:28 +00:00
parent 5a925ff1ff
commit 29c80daa3c
1 changed files with 8 additions and 0 deletions

View File

@ -223,6 +223,14 @@ public class CSVParserTest {
assertNull(parser.getRecord());
}
@Test
public void testCSV57() throws Exception {
CSVParser parser = new CSVParser("", CSVFormat.DEFAULT);
List<CSVRecord> l = parser.getRecords();
assertNotNull(l);
assertEquals(0, l.size());
}
@Test
@Ignore
public void testBackslashEscapingOld() throws IOException {