Align test names to other tests of the same kind

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1509956 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2013-08-03 11:01:36 +00:00
parent 70485e44f2
commit 3178725e98
1 changed files with 2 additions and 2 deletions

View File

@ -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"));
}