ITestAnnotationFilterReceiver

public interface ITestAnnotationFilterReceiver

com.android.tradefed.testtype.ITestAnnotationFilterReceiver


주석을 기반으로 실행할 테스트를 필터링할 수 있는 실행기입니다.

테스트는 포함 필터 중 하나 이상과 일치하고 어떤 것과도 일치하지 않으면 실행됩니다. 선택할 수 있습니다. 포함 필터가 주어지지 않은 경우 제외 필터와 일치하는 항목이 없습니다.

요약

공개 메서드

abstract void addAllExcludeAnnotation( notAnnotations)

테스트가 표시된 경우 제외할 주석의 ERROR(/Set)를 추가합니다.

abstract void addAllIncludeAnnotation( annotations)

주석으로 표시된 경우 테스트할 주석의 ERROR(/Set)를 추가합니다.

abstract void addExcludeAnnotation(String notAnnotation)

테스트가 표시된 경우 제외할 주석을 추가합니다.

abstract void addIncludeAnnotation(String annotation)

테스트가 표시되면 포함할 주석을 추가합니다.

abstract void clearExcludeAnnotations()

현재 추적된 모든 제외 주석을 삭제합니다.

abstract void clearIncludeAnnotations()

현재 추적된 모든 include 주석을 삭제합니다.

abstract getExcludeAnnotations()

제외할 주석의 현재 ERROR(/Set)를 반환합니다.

abstract getIncludeAnnotations()

포함할 주석의 현재 ERROR(/Set)를 반환합니다.

공개 메서드

addAllExcludeAnnotation 주석

public abstract void addAllExcludeAnnotation ( notAnnotations)

테스트가 표시된 경우 제외할 주석의 ERROR(/Set)를 추가합니다.

매개변수
notAnnotations

addAllIncludeAnnotation

public abstract void addAllIncludeAnnotation ( annotations)

주석으로 표시된 경우 테스트할 주석의 ERROR(/Set)를 추가합니다.

매개변수
annotations

add제외Annotation

public abstract void addExcludeAnnotation (String notAnnotation)

테스트가 표시된 경우 제외할 주석을 추가합니다.

매개변수
notAnnotation String

addIncludeAnnotation

public abstract void addIncludeAnnotation (String annotation)

테스트가 표시되면 포함할 주석을 추가합니다.

매개변수
annotation String

clear제외Annotations

public abstract void clearExcludeAnnotations ()

현재 추적된 모든 제외 주석을 삭제합니다.

clearIncludeAnnotations

public abstract void clearIncludeAnnotations ()

현재 추적된 모든 include 주석을 삭제합니다.

getExcludeAnnotations

public abstract  getExcludeAnnotations ()

제외할 주석의 현재 ERROR(/Set)를 반환합니다.

반환 값

getIncludeAnnotations

public abstract  getIncludeAnnotations ()

포함할 주석의 현재 ERROR(/Set)를 반환합니다.

반환 값