Home | History | Annotate | Download | only in test

Lines Matching refs:testMethod

30 import android.test.suitebuilder.TestMethod;
311 Predicate<TestMethod> testSizePredicate = null;
312 Predicate<TestMethod> testAnnotationPredicate = null;
313 Predicate<TestMethod> testNotAnnotationPredicate = null;
411 List<Predicate<TestMethod>> getBuilderRequirements() {
412 return new ArrayList<Predicate<TestMethod>>();
432 * Expected format: com.android.TestClass#testMethod
458 private Predicate<TestMethod> getSizePredicateFromArg(String sizeArg) {
477 private Predicate<TestMethod> getAnnotationPredicate(String annotationClassName) {
491 private Predicate<TestMethod> getNotAnnotationPredicate(String annotationClassName) {
776 Method testMethod = null;
778 testMethod = test.getClass().getMethod(testName);
780 if (testMethod.isAnnotationPresent(RepetitiveTest.class)) {
781 int numIterations = testMethod.getAnnotation(
808 if (testMethod != null && testMethod.isAnnotationPresent(TimedTest.class)) {
810 testMethod.getAnnotation(