Lines Matching defs:testFindSpecial

628     public void testFindSpecial() throws Throwable {
631 testFindSpecial(SubExample.class, Example.class, void.class, "v0");
632 testFindSpecial(SubExample.class, Example.class, void.class, "pkg_v0");
633 testFindSpecial(RemoteExample.class, PubExample.class, void.class, "Pub/pro_v0");
635 testFindSpecial(false, EXAMPLE, SubExample.class, Example.class, void.class, "bogus");
636 testFindSpecial(false, PRIVATE, SubExample.class, Example.class, void.class, "bogus");
638 testFindSpecial(false, lookup, Object.class, Example.class, void.class, "v0");
639 testFindSpecial(false, lookup, SubExample.class, Example.class, void.class, "<init>", int.class);
640 testFindSpecial(false, lookup, SubExample.class, Example.class, void.class, "s0");
644 void testFindSpecial(Class<?> specialCaller,
647 testFindSpecial(false, EXAMPLE, specialCaller, defc, ret, name, params);
648 testFindSpecial(false, PRIVATE, specialCaller, defc, ret, name, params);
649 testFindSpecial(false, PACKAGE, specialCaller, defc, ret, name, params);
650 testFindSpecial(true, SUBCLASS, specialCaller, defc, ret, name, params);
651 testFindSpecial(false, PUBLIC, specialCaller, defc, ret, name, params);
654 testFindSpecial(true, EXAMPLE, specialCaller, defc, ret, name, params);
655 testFindSpecial(true, PRIVATE, specialCaller, defc, ret, name, params);
656 testFindSpecial(false, PACKAGE, specialCaller, defc, ret, name, params);
657 testFindSpecial(false, SUBCLASS, specialCaller, defc, ret, name, params);
658 testFindSpecial(false, PUBLIC, specialCaller, defc, ret, name, params);
660 void testFindSpecial(boolean positive, Lookup lookup, Class<?> specialCaller,