Skip to content

Commit 8989b6f

Browse files
committed
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
1 parent 4a70de4 commit 8989b6f

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/test/java/org/apache/commons/csv/CSVParserTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -577,6 +577,7 @@ record = records.next();
577577
assertFalse(records.hasNext());
578578
}
579579

580+
@Test
580581
public void testGetHeaderMap() throws Exception {
581582
final CSVParser parser = new CSVParser("a,b,c\n1,2,3\nx,y,z", CSVFormat.newBuilder().withHeader("A", "B", "C").build());
582583
final Map<String, Integer> headerMap = parser.getHeaderMap();

0 commit comments

Comments
 (0)