Exemplo n.º 1
0
 @Test
 public void testEncodeString() {
   final String text = "--- abcdefg \r\n hijklmn \t opqrst \u3000 uvwxyz ---";
   String base64 = Base64Util.encodeString(text);
   String restore = Base64Util.decodeString(base64);
   assertEquals(text, restore);
 }