ITestFileFilterReceiver
public
interface
ITestFileFilterReceiver
com.android.tradefed.testtype.ITestFileFilterReceiver |
執行器可以接收檔案,指定要執行和/或不要執行的測試。
如果提供的 testFile 中提供了測試檔案,該測試將執行,且未由 notTestFile 或提供給測試執行器的排除篩選器。 檔案或檔案應包含以一行分隔的測試名稱清單,並採用篩選器格式。
篩選器的格式會由執行器定義,結構也可採用 <package>、<package>.<class>、<package>.<class>#<method>或 <native_name>。甚至可以是規則運算式。
摘要
公用方法 | |
---|---|
default
File
|
getExcludeTestFile()
傳回包含已排除測試的檔案。 |
default
File
|
getIncludeTestFile()
傳回內含測試項目的檔案。 |
abstract
void
|
setExcludeTestFile(File testFile)
設定排除項目的測試檔案。 |
abstract
void
|
setIncludeTestFile(File testFile)
設定 include 的測試檔案。 |
公用方法
getExcludeTestFile
public File getExcludeTestFile ()
傳回包含已排除測試的檔案。
傳回 | |
---|---|
File |
getIncludeTestFile
public File getIncludeTestFile ()
傳回內含測試項目的檔案。
傳回 | |
---|---|
File |
設定排除測試檔案
public abstract void setExcludeTestFile (File testFile)
設定排除項目的測試檔案。無法確定 testFile 是否存在或為檔案。
參數 | |
---|---|
testFile |
File |
setIncludeTestFile
public abstract void setIncludeTestFile (File testFile)
設定 include 的測試檔案。無法確定 testFile 是否存在或為檔案。
參數 | |
---|---|
testFile |
File |