OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HasAnnotation
(Results
1 - 6
of
6
) 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
;
480
return new
HasAnnotation
(annotationClass);
494
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);
/cts/tests/core/runner/src/android/test/
InstrumentationCtsTestRunner.java
30
import android.test.suitebuilder.annotation.
HasAnnotation
;
236
Predicates.not(new
HasAnnotation
(BrokenTest.class));
241
Predicates.not(new
HasAnnotation
(SideEffect.class));
Completed in 70 milliseconds