@Test public void testCamelCaseTwoWords() { assertEquals("WordUp", StringUtils.camelCase("wOrD_UP")); }
@Test public void testCamelCaseFourWords() { assertEquals("WordToYourMother", StringUtils.camelCase("wOrD_to_YOUR_moTHer")); }
@Test public void testCamelCaseOneWord() { assertEquals("Word", StringUtils.camelCase("wOrD")); }