@Test public void test() { assertEquals( "toJadenCase doesn't return a valide JadenCase String! try again please :)", jadenCase.toJadenCase("most trees are blue"), "Most Trees Are Blue"); }
@Test public void testEmptyArg() { assertNull("Must return null when the arg is null", jadenCase.toJadenCase("")); }