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:
parent
70485e44f2
commit
3178725e98
|
@ -317,13 +317,13 @@ public class CSVLexerTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test // TODO is this correct? Do we expect BACKSPACE to be un/escaped?
|
@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);
|
final Lexer lexer = getLexer("character\\" + BACKSPACE + "Escaped", formatWithEscaping);
|
||||||
assertThat(lexer.nextToken(new Token()), hasContent("character" + BACKSPACE + "Escaped"));
|
assertThat(lexer.nextToken(new Token()), hasContent("character" + BACKSPACE + "Escaped"));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test // TODO is this correct? Do we expect FF to be un/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);
|
final Lexer lexer = getLexer("character\\" + FF + "Escaped", formatWithEscaping);
|
||||||
assertThat(lexer.nextToken(new Token()), hasContent("character" + FF + "Escaped"));
|
assertThat(lexer.nextToken(new Token()), hasContent("character" + FF + "Escaped"));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue