IAutoRetriableTest
public
interface
IAutoRetriableTest
implements
IRemoteTest
com.android.tradefed.testtype.retry.IAutoRetriableTest |
不實作 ITestFilterReceiver
但仍希望支援自動重試的 IRemoteTest
介面。
建議大多數執行程式實作 ITestFilterReceiver
,並針對要讓配套程式處理的測試,提供精細的控制項。但在某些情況下,可能並不需要透過委派形式的重試。
摘要
公用方法 | |
---|---|
default
boolean
|
shouldRetry(int attemptJustExecuted,
|
公用方法
shouldRetry
public boolean shouldRetry (int attemptJustExecuted,previousResults, skipList)
委派者:ERROR(IRetryDecision#shouldRetry(IRemoteTest, int, List)/com.android.tradefed.retry.IRetryDecision#shouldRetry(com.android.tradefed.testtype.IRemoteTest,int,List) IRetryDecision#shouldRetry(IRemoteTest, int, List))
。決定是否應重試。請一併對要重試的 IRemoteTest
進行必要變更 (例如套用篩選器、準備下次執行作業等)。
參數 | |
---|---|
attemptJustExecuted |
int :剛才嘗試的次數。 |
previousResults |
:剛剛執行的測試 TestRunResult 清單。 |
skipList |
:不應重試的項目集合。 |
傳回 | |
---|---|
boolean |
如果應重試,則傳回 True,否則傳回 False。 |
擲回 | |
---|---|
DeviceNotAvailableException |
可在裝置復原期間擲回 |