We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca159f6 commit a03ca86Copy full SHA for a03ca86
org.springframework.core/src/test/java/org/springframework/util/ClassUtilsTests.java
@@ -64,6 +64,7 @@ public void testForName() throws ClassNotFoundException {
64
assertEquals(TestBean[].class, ClassUtils.forName(TestBean[].class.getName()));
65
assertEquals(TestBean[][].class, ClassUtils.forName("org.springframework.beans.TestBean[][]"));
66
assertEquals(TestBean[][].class, ClassUtils.forName(TestBean[][].class.getName()));
67
+ assertEquals(short[][][].class, ClassUtils.forName("[[[S"));
68
}
69
70
public void testForNameWithPrimitiveClasses() throws ClassNotFoundException {
0 commit comments