Add edge case.

This commit is contained in:
Gary Gregory 2020-06-15 09:17:23 -04:00
parent cf0778a5ad
commit 438716a839
1 changed files with 1 additions and 0 deletions

View File

@ -1357,6 +1357,7 @@ public void testJoinWith() {
assertEquals("a,b,c", StringUtils.joinWith(",", "a", "b", "c"));
assertEquals(",a,", StringUtils.joinWith(",", null, "a", ""));
assertEquals(",a,", StringUtils.joinWith(",", "", "a", ""));
assertEquals("ab", StringUtils.joinWith(null, "a", "b"));
}