[CSV-236] Allow duplicate headers in CSV File.

Add test.
This commit is contained in:
Gary Gregory 2019-09-04 09:54:49 -04:00
parent c203896177
commit f62fd132d0
1 changed files with 5 additions and 0 deletions

View File

@ -585,6 +585,11 @@ public class CSVFormatTest {
}
@Test
public void testJiraCsv236() {
CSVFormat.DEFAULT.withAllowDuplicateHeaderNames().withHeader("CC","VV","VV");
}
@Test
public void testNewFormat() {