ITestAnnotationFilterReceiver
public
interface
ITestAnnotationFilterReceiver
com.android.tradefed.testtype.ITestAnnotationFilterReceiver |
アノテーションに基づいて実行するテストをフィルタできるランナー。
テストは、1 つ以上の include フィルタと一致し、かつ、いずれの exclude フィルタとも一致しない場合に実行されます。include フィルタが指定されていない場合は、いずれの exclude フィルタとも一致しない限り、すべてのテストが実行されます。
概要
パブリック メソッド | |
---|---|
abstract
void
|
addAllExcludeAnnotation(
テストにマークが付いている場合に除外するアノテーションの |
abstract
void
|
addAllIncludeAnnotation(
テストにマークが付いている場合に含めるアノテーションの |
abstract
void
|
addExcludeAnnotation(String notAnnotation)
テストにマークが付いている場合に除外するアノテーションを追加します。 |
abstract
void
|
addIncludeAnnotation(String annotation)
テストにマークが付いている場合に含めるアノテーションを追加します。 |
abstract
void
|
clearExcludeAnnotations()
現在トラッキングされている除外アノテーションをすべて削除します。 |
abstract
void
|
clearIncludeAnnotations()
現在トラッキングされている include アノテーションをすべて削除します。 |
abstract
|
getExcludeAnnotations()
除外するアノテーションの現在の |
abstract
|
getIncludeAnnotations()
含めるアノテーションの現在の |
パブリック メソッド
addAllExcludeAnnotation
public abstract void addAllExcludeAnnotation (notAnnotations)
テストにマークが付いている場合に除外するアノテーションの ERROR(/Set)
を追加しました。
パラメータ | |
---|---|
notAnnotations |
|
addAllIncludeAnnotation
public abstract void addAllIncludeAnnotation (annotations)
テストにマークが付いている場合に含めるアノテーションの ERROR(/Set)
を追加します。
パラメータ | |
---|---|
annotations |
|
addExcludeAnnotation
public abstract void addExcludeAnnotation (String notAnnotation)
テストにマークが付いている場合に除外するアノテーションを追加しました。
パラメータ | |
---|---|
notAnnotation |
String |
addIncludeAnnotation
public abstract void addIncludeAnnotation (String annotation)
テストにマークが付いている場合に含めるアノテーションを追加します。
パラメータ | |
---|---|
annotation |
String |
clearExcludeAnnotations
public abstract void clearExcludeAnnotations ()
現在トラッキングされている除外アノテーションをすべて削除します。
clearIncludeAnnotations
public abstract void clearIncludeAnnotations ()
現在トラッキングされている include アノテーションをすべて削除します。
getExcludeAnnotations
public abstractgetExcludeAnnotations ()
除外するアノテーションの現在の ERROR(/Set)
を返します。
戻り値 | |
---|---|
|
getIncludeAnnotations
public abstractgetIncludeAnnotations ()
含めるアノテーションの現在の ERROR(/Set)
を返します。
戻り値 | |
---|---|
|