Skip to content

Commit a03ca86

Browse files
author
Rob Harrop
committed
[SPR-6057] test case to show that bug is already fixed
1 parent ca159f6 commit a03ca86

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

org.springframework.core/src/test/java/org/springframework/util/ClassUtilsTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ public void testForName() throws ClassNotFoundException {
6464
assertEquals(TestBean[].class, ClassUtils.forName(TestBean[].class.getName()));
6565
assertEquals(TestBean[][].class, ClassUtils.forName("org.springframework.beans.TestBean[][]"));
6666
assertEquals(TestBean[][].class, ClassUtils.forName(TestBean[][].class.getName()));
67+
assertEquals(short[][][].class, ClassUtils.forName("[[[S"));
6768
}
6869

6970
public void testForNameWithPrimitiveClasses() throws ClassNotFoundException {

0 commit comments

Comments
 (0)