@Test public void should_concatenate_given_Strings() { assertEquals("OneTwoThree", Strings.concat("One", "Two", "Three")); }
@Test public void should_throw_error_if_array_is_null() { thrown.expect(NullPointerException.class); assertNull(Strings.concat((Object[]) null)); }