You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2013/03/23 12:16:54 UTC

svn commit: r1460126 - /commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVParserTest.java

Author: britter
Date: Sat Mar 23 11:16:54 2013
New Revision: 1460126

URL: http://svn.apache.org/r1460126
Log:
Add missing @Test annotation to testGetHeaderMap()

Modified:
    commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVParserTest.java

Modified: commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVParserTest.java
URL: http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVParserTest.java?rev=1460126&r1=1460125&r2=1460126&view=diff
==============================================================================
--- commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVParserTest.java (original)
+++ commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVParserTest.java Sat Mar 23 11:16:54 2013
@@ -577,6 +577,7 @@ public class CSVParserTest {
         assertFalse(records.hasNext());
     }
 
+    @Test
     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 Map<String, Integer> headerMap = parser.getHeaderMap();