Searched refs:suiteMethod (Results 1 – 3 of 3) sorted by relevance
28 Method suiteMethod = null; in testFromSuiteMethod() local31 suiteMethod = klass.getMethod("suite"); in testFromSuiteMethod()32 if (!Modifier.isStatic(suiteMethod.getModifiers())) { in testFromSuiteMethod()35 suite = (Test) suiteMethod.invoke(null); // static method in testFromSuiteMethod()
114 Method suiteMethod = null; in getTest() local116 suiteMethod = testClass.getMethod(SUITE_METHODNAME); in getTest()122 if (!Modifier.isStatic(suiteMethod.getModifiers())) { in getTest()128 test = (Test) suiteMethod.invoke(null); // static method in getTest()
208 Method suiteMethod = null; in getTest() local210 suiteMethod = testClass.getMethod(SUITE_METHODNAME, new Class[0]); in getTest()217 if (!Modifier.isStatic(suiteMethod.getModifiers())) { in getTest()224 test = (Test) suiteMethod.invoke(null, (Object[]) new Class[0]); // static method in getTest()