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

setExcludeTestFile

public abstract void setExcludeTestFile (File testFile)

设置排除项测试文件。不能确保 testFile 存在或者是一个文件。

参数
testFile File

setIncludeTestFile

public abstract void setIncludeTestFile (File testFile)

设置 include 的测试文件。不能确保 testFile 存在或者是一个文件。

参数
testFile File