From f16818b3ba8f72f856401dfc89d6c3ff544cc64c Mon Sep 17 00:00:00 2001 From: Benedikt Ritter Date: Sun, 14 Apr 2013 11:35:47 +0000 Subject: [PATCH] Give tests a better name that expresses, what actually happens git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1467766 13f79535-47bb-0310-9956-ffa450edef68 --- src/test/java/org/apache/commons/csv/CSVLexerTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/java/org/apache/commons/csv/CSVLexerTest.java b/src/test/java/org/apache/commons/csv/CSVLexerTest.java index b1c3e5b4..c7c58cae 100644 --- a/src/test/java/org/apache/commons/csv/CSVLexerTest.java +++ b/src/test/java/org/apache/commons/csv/CSVLexerTest.java @@ -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 * \,, */