Home
last modified time | relevance | path

Searched refs:testClassType (Results 1 – 1 of 1) sorted by relevance

/art/test/912-classes/src-art/art/
DTest912.java44 testClassType(int.class); in doTest()
45 testClassType(getProxyClass()); in doTest()
46 testClassType(Runnable.class); in doTest()
47 testClassType(String.class); in doTest()
48 testClassType(ArrayList.class); in doTest()
50 testClassType(int[].class); in doTest()
51 testClassType(Runnable[].class); in doTest()
52 testClassType(String[].class); in doTest()
128 private static void testClassType(Class<?> c) throws Exception { in testClassType() method in Test912