Home | History | Annotate | Download | only in test

Lines Matching refs:TestMethod

30 import android.test.suitebuilder.TestMethod;
317 Predicate<TestMethod> testSizePredicate = null;
318 Predicate<TestMethod> testAnnotationPredicate = null;
319 Predicate<TestMethod> testNotAnnotationPredicate = null;
417 List<Predicate<TestMethod>> getBuilderRequirements() {
418 return new ArrayList<Predicate<TestMethod>>();
438 * Expected format: com.android.TestClass#testMethod
464 private Predicate<TestMethod> getSizePredicateFromArg(String sizeArg) {
483 private Predicate<TestMethod> getAnnotationPredicate(String annotationClassName) {
497 private Predicate<TestMethod> getNotAnnotationPredicate(String annotationClassName) {
782 Method testMethod = null;
784 testMethod = test.getClass().getMethod(testName);
786 if (testMethod.isAnnotationPresent(RepetitiveTest.class)) {
787 int numIterations = testMethod.getAnnotation(
814 if (testMethod != null && testMethod.isAnnotationPresent(TimedTest.class)) {
816 mIncludeDetailedStats = testMethod.getAnnotation(