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:
parent
5a925ff1ff
commit
29c80daa3c
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue