Author: britter
Date: Sat Aug 3 11:01:36 2013
New Revision: 1509956
URL: http://svn.apache.org/r1509956
Log:
Align test names to other tests of the same kind
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=1509956&r1=1509955&r2=1509956&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
Sat Aug 3 11:01:36 2013
@@ -317,13 +317,13 @@ public class CSVLexerTest {
}
@Test // TODO is this correct? Do we expect BACKSPACE to be un/escaped?
- public void testEscapeBackspace() throws Exception {
+ public void testEscapedBackspace() throws Exception {
final Lexer lexer = getLexer("character\\" + BACKSPACE + "Escaped",
formatWithEscaping);
assertThat(lexer.nextToken(new Token()), hasContent("character" +
BACKSPACE + "Escaped"));
}
@Test // TODO is this correct? Do we expect FF to be un/escaped?
- public void testEscapeFF() throws Exception {
+ public void testEscapedFF() throws Exception {
final Lexer lexer = getLexer("character\\" + FF + "Escaped",
formatWithEscaping);
assertThat(lexer.nextToken(new Token()), hasContent("character" + FF +
"Escaped"));
}