mirror of
https://github.com/apache/commons-csv.git
synced 2025-02-07 18:49:24 +00:00
Add missing @Test annotation to testGetHeaderMap()
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1460126 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4a70de4b44
commit
8989b6fc56
@ -577,6 +577,7 @@ public class CSVParserTest {
|
|||||||
assertFalse(records.hasNext());
|
assertFalse(records.hasNext());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
public void testGetHeaderMap() throws Exception {
|
public void testGetHeaderMap() throws Exception {
|
||||||
final CSVParser parser = new CSVParser("a,b,c\n1,2,3\nx,y,z", CSVFormat.newBuilder().withHeader("A", "B", "C").build());
|
final CSVParser parser = new CSVParser("a,b,c\n1,2,3\nx,y,z", CSVFormat.newBuilder().withHeader("A", "B", "C").build());
|
||||||
final Map<String, Integer> headerMap = parser.getHeaderMap();
|
final Map<String, Integer> headerMap = parser.getHeaderMap();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user