HomeSort by relevance Sort by last modified time
    Searched refs:HasAnnotation (Results 1 - 5 of 5) sorted by null

  /frameworks/base/test-runner/src/android/test/suitebuilder/
TestPredicates.java 20 import android.test.suitebuilder.annotation.HasAnnotation;
39 public static final Predicate<TestMethod> SELECT_SMOKE = new HasAnnotation(Smoke.class);
40 public static final Predicate<TestMethod> SELECT_SMALL = new HasAnnotation(SmallTest.class);
41 public static final Predicate<TestMethod> SELECT_MEDIUM = new HasAnnotation(MediumTest.class);
42 public static final Predicate<TestMethod> SELECT_LARGE = new HasAnnotation(LargeTest.class);
44 Predicates.not(new HasAnnotation(Suppress.class));
  /frameworks/base/test-runner/src/android/test/suitebuilder/annotation/
HasAnnotation.java 31 public class HasAnnotation implements Predicate<TestMethod> {
35 public HasAnnotation(Class<? extends Annotation> annotationClass) {
  /frameworks/base/test-runner/src/android/test/
InstrumentationCoreTestRunner.java 36 import android.test.suitebuilder.annotation.HasAnnotation;
201 Predicates.not(new HasAnnotation(BrokenTest.class));
205 Predicates.not(new HasAnnotation(SideEffect.class));
InstrumentationTestRunner.java 33 import android.test.suitebuilder.annotation.HasAnnotation;
481 return new HasAnnotation(annotationClass);
495 return Predicates.not(new HasAnnotation(annotationClass));
    [all...]
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/annotation/
HasAnnotationTest.java 48 return new HasAnnotation(Example.class).apply(testMethod);

Completed in 3226 milliseconds