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

  /frameworks/testing/androidtestlib/src/com/android/test/runner/
AndroidJUnitRunner.java 102 * -e notAnnotation com.android.foo.MyAnnotation
107 * e.g. "-e size large -e notAnnotation com.android.foo.MyAnnotation" will run tests with
133 private static final String ARGUMENT_NOT_ANNOTATION = "notAnnotation";
364 String notAnnotation = arguments.getString(ARGUMENT_NOT_ANNOTATION);
365 if (notAnnotation != null) {
366 builder.addAnnotationExclusionFilter(notAnnotation);
TestRequestBuilder.java 250 * @param notAnnotation the full class name of annotation
252 public void addAnnotationExclusionFilter(String notAnnotation) {
253 Class<? extends Annotation> annotationClass = loadAnnotationClass(notAnnotation);

Completed in 1001 milliseconds