@Test
 public void testIsPositiveInt() {
   assertTrue(StringUtils.isPositiveInt("1234"));
   assertFalse(StringUtils.isPositiveInt("12.34"));
   assertFalse(StringUtils.isPositiveInt("-1234"));
 }