Exemplo n.º 1
0
 @Test
 public void testCreateChar() {
   String test = StringUtil.create('-', 5);
   assertEquals("-----", test);
 }
Exemplo n.º 2
0
 @Test
 public void testCreateString() {
   String test = StringUtil.create("+-", 5);
   assertEquals("+-+-+-+-+-", test);
 }
Exemplo n.º 3
0
 @Test
 public void testCreateSpace() {
   String test = StringUtil.create(5);
   assertEquals("     ", test);
 }