Test empty files
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1305668 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c53d3f3025
commit
50a89da39f
|
@ -217,6 +217,12 @@ public class CSVParserTest {
|
|||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testEmptyFile() throws Exception {
|
||||
CSVParser parser = new CSVParser("", CSVFormat.DEFAULT);
|
||||
assertNull(parser.getRecord());
|
||||
}
|
||||
|
||||
@Test
|
||||
@Ignore
|
||||
public void testBackslashEscapingOld() throws IOException {
|
||||
|
|
Loading…
Reference in New Issue