Exemplo n.º 1
0
 @Test
 public void testTrimChar() {
   String test = StringUtil.trim("...this is a test...", '.');
   assertEquals("this is a test", test);
 }
Exemplo n.º 2
0
 @Test
 public void testTrimSpace() {
   String test = StringUtil.trim("  this is a test  ");
   assertEquals("this is a test", test);
 }