重試結果轉送器
public
class
RetryResultForwarder
extends ResultForwarder
java.lang.Object | ||
↳ | com.android.tradefed.result.ResultForwarder | |
↳ | com.android.tradefed.result.重試 ResultForwarder |
ResultForwarder
的擴充功能,一律會推送至指定嘗試次數。
摘要
公用建構函式 | |
---|---|
RetryResultForwarder(int attemptNumber, ITestInvocationListener... listeners)
|
公用方法 | |
---|---|
void
|
testRunStarted(String runName, int testCount)
回報測試執行作業的開始。 |
void
|
testRunStarted(String runName, int testCount, int attemptNumber)
回報測試執行作業的開始。 |
公用建構函式
重試結果轉送器
public RetryResultForwarder (int attemptNumber, ITestInvocationListener... listeners)
參數 | |
---|---|
attemptNumber |
int |
listeners |
ITestInvocationListener |
公用方法
testRunStarted
public void testRunStarted (String runName, int testCount)
回報測試執行作業的開始。
參數 | |
---|---|
runName |
String :測試執行作業名稱 |
testCount |
int :測試執行作業中的測試總數 |
testRunStarted
public void testRunStarted (String runName, int testCount, int attemptNumber)
回報測試執行作業的開始。
參數 | |
---|---|
runName |
String :測試執行作業名稱 |
testCount |
int :測試執行作業中的測試總數 |
attemptNumber |
int :訂單號碼,可識別同一個 runName 的不同嘗試次數
執行多次tryNumber 為 0 的索引,且每次都會遞增
新的執行作業發生時例如:每次執行精細的重試測試 3 次,總共應該有 4 次
在同一個 runName 下執行,且 tryNumber 介於 0 到 3 之間。 |