mirror of
https://github.com/apache/commons-lang.git
synced 2025-02-06 18:18:22 +00:00
Remove non-array version of test as it does not work.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@983511 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f55d14f871
commit
d42c22929d
@ -192,7 +192,6 @@ public void testConcat_Objects() {
|
||||
assertEquals("abc", StringUtils.concat("a", "b", "c"));
|
||||
assertEquals("a", StringUtils.concat(null, "", "a"));
|
||||
assertEquals(null, StringUtils.concat((Object[])null));
|
||||
assertEquals(null, StringUtils.concat((Object)null)); // varargs version
|
||||
}
|
||||
|
||||
public void testConcatWith_StringObjects() {
|
||||
@ -201,7 +200,6 @@ public void testConcatWith_StringObjects() {
|
||||
assertEquals("a", StringUtils.concatWith("", null, "", "a"));
|
||||
assertEquals("a", StringUtils.concatWith(null, null, "", "a"));
|
||||
assertEquals(null, StringUtils.concatWith(null, (Object[])null));
|
||||
assertEquals(null, StringUtils.concatWith(null, (Object)null)); // varargs version
|
||||
}
|
||||
|
||||
public void testJoin_Objectarray() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user