ITestSuiteResultLoader
public
interface
ITestSuiteResultLoader
com.android.tradefed.testtype.suite.retry.ITestSuiteResultLoader |
描述帮助程序以可重新运行的方式加载先前结果的接口。
摘要
公共方法 | |
---|---|
default
void
|
cleanUp()
清理所有内部状态。 |
default
void
|
customizeConfiguration(IConfiguration config)
允许专用加载器在重新运行之前自定义配置。 |
abstract
String
|
getCommandLine()
从上次运行中检索原始命令行。 |
abstract
void
|
init()
初始化加载器。 |
abstract
CollectingTestListener
|
loadPreviousResults()
以 |
公共方法
清理
public void cleanUp ()
清理所有内部状态。
customConfiguration
public void customizeConfiguration (IConfiguration config)
允许专用加载器在重新运行之前自定义配置。 自定义通常涉及向原始配置添加一些对象, 让它做一些额外的任务
参数 | |
---|---|
config |
IConfiguration :将重新运行的 IConfiguration 。 |
getCommandLine
public abstract String getCommandLine ()
从上次运行中检索原始命令行。
返回 | |
---|---|
String |
init
public abstract void init ()
初始化加载器。
loadPreviousResults(加载先前结果)
public abstract CollectingTestListener loadPreviousResults ()
以 CollectingTestListener
格式加载之前的结果。
返回 | |
---|---|
CollectingTestListener |