cleanup work

This commit is contained in:
eugenp 2014-10-21 12:42:40 +03:00
parent 6e16b3352c
commit 12b5d784e0
3 changed files with 2 additions and 9 deletions

View File

@ -22,7 +22,6 @@ import java.util.Scanner;
import org.junit.Test;
/*
MappedByteBuffer
@ -113,7 +112,6 @@ public class JavaReadFromFileTest {
stream2.close();
}
@Test
public void whenReadUTFEncodedFile_thenCorrect() throws IOException {
final String expected_value = "青空";
@ -177,5 +175,4 @@ public class JavaReadFromFileTest {
assertEquals(expected_value, line);
}
}

View File

@ -23,5 +23,5 @@ public class IgnoringFieldsNotMatchingCriteriaSerializer implements JsonSerializ
return jObject;
}
}

View File

@ -116,7 +116,7 @@ public class GuavaStringTest {
}
@Test
public void whenRemoveSpecialCharacters_thenRemoved(){
public void whenRemoveSpecialCharacters_thenRemoved() {
final String input = "H*el.lo,}12";
final CharMatcher matcher = CharMatcher.JAVA_LETTER_OR_DIGIT;
final String result = matcher.retainFrom(input);
@ -163,7 +163,6 @@ public class GuavaStringTest {
assertEquals("hello", result);
}
@Test
public void whenCollapseFromString_thenCollapsed() {
final String input = " hel lo ";
@ -197,7 +196,4 @@ public class GuavaStringTest {
assertEquals(2, result);
}
}