Author: britter
Date: Wed Apr 10 17:48:28 2013
New Revision: 1466591
URL: http://svn.apache.org/r1466591
Log:
Give test a better name
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=1466591&r1=1466590&r2=1466591&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
Wed Apr 10 17:48:28 2013
@@ -58,7 +58,7 @@ public class CSVLexerTest {
}
@Test
- public void testIgnoreSurroundingSpacesAreDeleted() throws IOException {
+ public void testSurroundingSpacesAreDeleted() throws IOException {
final String code = "noSpaces, leadingSpaces,trailingSpaces ,
surroundingSpaces , ,,";
final Lexer parser = getLexer(code,
CSVFormat.newBuilder().withIgnoreSurroundingSpaces(true).build());
assertThat(parser.nextToken(new Token()), matches(TOKEN, "noSpaces"));