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/04/14 13:35:48 UTC

svn commit: r1467766 - /commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVLexerTest.java

Author: britter
Date: Sun Apr 14 11:35:47 2013
New Revision: 1467766

URL: http://svn.apache.org/r1467766
Log:
Give tests a better name that expresses, what actually happens

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

Modified: commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVLexerTest.java
URL: http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVLexerTest.java?rev=1467766&r1=1467765&r2=1467766&view=diff
==============================================================================
--- commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVLexerTest.java (original)
+++ commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVLexerTest.java Sun Apr 14 11:35:47 2013
@@ -193,7 +193,7 @@ public class CSVLexerTest {
 
     // simple token with escaping not enabled
     @Test
-    public void testNextToken3() throws IOException {
+    public void testBackslashWithoutEscaping() throws IOException {
         /* file: a,\,,b
         *       \,,
         */
@@ -215,7 +215,7 @@ public class CSVLexerTest {
 
     // simple token with escaping enabled
     @Test
-    public void testNextToken3Escaping() throws IOException {
+    public void testBackslashWithEscaping() throws IOException {
         /* file: a,\,,b
         *       \,,
         */