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:
parent
04522fbf90
commit
f16818b3ba
|
@ -193,7 +193,7 @@ public class CSVLexerTest {
|
||||||
|
|
||||||
// simple token with escaping not enabled
|
// simple token with escaping not enabled
|
||||||
@Test
|
@Test
|
||||||
public void testNextToken3() throws IOException {
|
public void testBackslashWithoutEscaping() throws IOException {
|
||||||
/* file: a,\,,b
|
/* file: a,\,,b
|
||||||
* \,,
|
* \,,
|
||||||
*/
|
*/
|
||||||
|
@ -215,7 +215,7 @@ public class CSVLexerTest {
|
||||||
|
|
||||||
// simple token with escaping enabled
|
// simple token with escaping enabled
|
||||||
@Test
|
@Test
|
||||||
public void testNextToken3Escaping() throws IOException {
|
public void testBackslashWithEscaping() throws IOException {
|
||||||
/* file: a,\,,b
|
/* file: a,\,,b
|
||||||
* \,,
|
* \,,
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue