Home | History | Annotate | Download | only in utils

Lines Matching refs:TestMethod

358             Method testMethod = testClass.getMethod(testName, (Class[])null);
359 Annotation[] annotations = testMethod.getAnnotations();
396 for (Method testMethod : testMethods) {
397 String testName = testMethod.getName();
403 if (!Modifier.isPublic(testMethod.getModifiers())) {
406 if (!testMethod.getReturnType().equals(Void.TYPE)) {
409 if (testMethod.getParameterTypes().length != 0) {
414 || (!isJunit3Test && !isJunit4TestMethod(testMethod))) {
457 testClass = new TestClass(testClassName, new ArrayList<TestMethod>());
461 testClass.mCases.add(new TestMethod(testName, "", "", supportedAbis,