Home
last modified time | relevance | path

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

/libcore/ojluni/src/test/java/lang/invoke/
DMethodHandlesGeneralTest.java78 public void testFindStatic() throws Throwable { in testFindStatic() method in MethodHandlesGeneralTest
81 testFindStatic(PubExample.class, void.class, "s0"); in testFindStatic()
82 testFindStatic(Example.class, void.class, "s0"); in testFindStatic()
83 testFindStatic(Example.class, void.class, "pkg_s0"); in testFindStatic()
84 testFindStatic(Example.class, void.class, "pri_s0"); in testFindStatic()
85 testFindStatic(Example.class, void.class, "pro_s0"); in testFindStatic()
86 testFindStatic(PubExample.class, void.class, "Pub/pro_s0"); in testFindStatic()
88 testFindStatic(Example.class, Object.class, "s1", Object.class); in testFindStatic()
89 testFindStatic(Example.class, Object.class, "s2", int.class); in testFindStatic()
90 testFindStatic(Example.class, Object.class, "s3", long.class); in testFindStatic()
[all …]
DJavaDocExamplesTest.java125 @Test public void testFindStatic() throws Throwable { in testFindStatic() method in JavaDocExamplesTest