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
This commit is contained in:
Benedikt Ritter 2013-04-14 11:35:47 +00:00
parent 04522fbf90
commit f16818b3ba
1 changed files with 2 additions and 2 deletions

View File

@ -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
* \,,
*/