ITestLifeCycleReceiver
public
interface
ITestLifeCycleReceiver
com.android.tradefed.result.ITestLifeCycleReceiver |
在檢測設備測試執行期間接收事件通知。
在 org.junit.runner.notification.RunListener 之後的模式
呼叫序列為:
- testRunStarted
- testStarted
- [測試失敗]
- [testAssumptionFailure]
- [已忽略測試]
- 測試結束
- ...
- [測試執行失敗]
- testRunEnded
摘要
公用方法 | |
---|---|
default
void
|
testAssumptionFailure(TestDescription test, String trace)
在不可部分完成的測試旗標假設條件為 false 時呼叫 |
default
void
|
testAssumptionFailure(TestDescription test, FailureDescription failure)
在不可部分完成的測試旗標假設條件為 false 時呼叫 |
default
void
|
testEnded(TestDescription test, long endTime,
|
default
void
|
testEnded(TestDescription test,
回報個別測試案例的執行結束時間。 |
default
void
|
testFailed(TestDescription test, FailureDescription failure)
回報個別測試案例的失敗情形。 |
default
void
|
testFailed(TestDescription test, String trace)
回報個別測試案例的失敗情形。 |
default
void
|
testIgnored(TestDescription test)
在測試不執行時呼叫的呼叫,通常是因為測試方法加上了 org.junit.Ignore |
default
void
|
testRunEnded(long elapsedTimeMillis,
測試執行結束報表。 |
default
void
|
testRunFailed(FailureDescription failure)
由於「 |
default
void
|
testRunFailed(String errorMessage)
發生嚴重錯誤,因此無法完成報表測試。 |
default
void
|
testRunStarted(String runName, int testCount, int attemptNumber)
回報測試執行作業的開始。 |
default
void
|
testRunStarted(String runName, int testCount)
回報測試執行作業的開始。 |
default
void
|
testRunStarted(String runName, int testCount, int attemptNumber, long startTime)
回報測試執行作業的開始。 |
default
void
|
testRunStopped(long elapsedTime)
由於使用者要求,報表測試在執行完畢前已停止執行。 |
default
void
|
testSkipped(TestDescription test, SkipReason reason)
測試被略過,且因非預期原因而未執行時呼叫。 |
default
void
|
testStarted(TestDescription test, long startTime)
|
default
void
|
testStarted(TestDescription test)
回報個別測試案例的開頭。 |
公用方法
testAssumptionFailure
public void testAssumptionFailure (TestDescription test, String trace)
在不可部分完成的測試旗標假設條件為 false 時呼叫
參數 | |
---|---|
test |
TestDescription :識別測試 |
trace |
String :失敗的堆疊追蹤 |
testAssumptionFailure
public void testAssumptionFailure (TestDescription test, FailureDescription failure)
在不可部分完成的測試旗標假設條件為 false 時呼叫
參數 | |
---|---|
test |
TestDescription :識別測試 |
failure |
FailureDescription :FailureDescription ,說明失敗及其背景資訊。 |
測試結束
public void testEnded (TestDescription test, long endTime,testMetrics)
ERROR(/#testEnded(com.android.tradefed.result.TestDescription,Map))
的替代方式,可以指定結束時間
搭配 testStarted(com.android.tradefed.result.TestDescription, long)
即可取得準確的測量結果。
參數 | |
---|---|
test |
TestDescription :識別測試 |
endTime |
long :測試結束的時間,透過 System.currentTimeMillis() 進行評估 |
testMetrics |
:發送的指標的 ERROR(/Map) |
測試結束
public void testEnded (TestDescription test,testMetrics)
回報個別測試案例的執行結束時間。
如果未叫用 testFailed(TestDescription, FailureDescription)
,這項測試就會通過。同時傳回任何鍵/值
指標,這些是在測試案例執行期間產生的指標。
參數 | |
---|---|
test |
TestDescription :識別測試 |
testMetrics |
:發送的指標的 ERROR(/Map) |
測試失敗
public void testFailed (TestDescription test, FailureDescription failure)
回報個別測試案例的失敗情形。
這個值會在 testStarted 和 testEnded 之間呼叫。
參數 | |
---|---|
test |
TestDescription :識別測試 |
failure |
FailureDescription :FailureDescription ,說明失敗及其背景資訊。 |
測試失敗
public void testFailed (TestDescription test, String trace)
回報個別測試案例的失敗情形。
這個值會在 testStarted 和 testEnded 之間呼叫。
參數 | |
---|---|
test |
TestDescription :識別測試 |
trace |
String :失敗的堆疊追蹤 |
已忽略測試
public void testIgnored (TestDescription test)
在測試不執行時呼叫的呼叫,通常是因為測試方法加上了 org.junit.Ignore
參數 | |
---|---|
test |
TestDescription :識別測試 |
testRunEnded
public void testRunEnded (long elapsedTimeMillis,runMetrics)
測試執行結束報表。FIXME:我們不能有兩張地圖<>產生不同類型的介面 我們一定要在這裡使用 HashMap
參數 | |
---|---|
elapsedTimeMillis |
long :裝置回報的經過時間 (以毫秒為單位) |
runMetrics |
:使用 Metric 的測試執行結束時回報的鍵/值組合。 |
testRunFailed
public void testRunFailed (FailureDescription failure)
由於「FailureDescription
」指出失敗,因此無法完成報表測試。
參數 | |
---|---|
failure |
FailureDescription :FailureDescription ,說明失敗及其背景資訊。 |
testRunFailed
public void testRunFailed (String errorMessage)
發生嚴重錯誤,因此無法完成報表測試。
參數 | |
---|---|
errorMessage |
String :String 說明執行失敗的原因。 |
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 之間。 |
testRunStarted
public void testRunStarted (String runName, int testCount)
回報測試執行作業的開始。
參數 | |
---|---|
runName |
String :測試執行作業名稱 |
testCount |
int :測試執行作業中的測試總數 |
testRunStarted
public void testRunStarted (String runName, int testCount, int attemptNumber, long startTime)
回報測試執行作業的開始。
參數 | |
---|---|
runName |
String :測試執行作業名稱 |
testCount |
int :測試執行作業中的測試總數 |
attemptNumber |
int :訂單號碼,可識別同一個 runName 的不同嘗試次數
執行多次tryNumber 為 0 的索引,且每次傳回
新的工作也會開始執行例如:執行精細的重試次數為 3 次,總共應執行 4 次測試
同一個 runName,且 tryNumber 介於 0 到 3 之間。 |
startTime |
long :執行作業開始的時間,透過 System.currentTimeMillis() 測量 |
testRunStopped
public void testRunStopped (long elapsedTime)
由於使用者要求,報表測試在執行完畢前已停止執行。
待辦事項:目前未使用,建議移除
參數 | |
---|---|
elapsedTime |
long :裝置回報的經過時間 (以毫秒為單位) |
測試略過
public void testSkipped (TestDescription test, SkipReason reason)
測試被略過,且因非預期原因而未執行時呼叫。 系統會嘗試重新嘗試這些測試,以便執行正確的作業。
參數 | |
---|---|
test |
TestDescription :識別測試 |
reason |
SkipReason :SkipReason |
testStarted
public void testStarted (TestDescription test, long startTime)
testStarted(com.android.tradefed.result.TestDescription)
的替代方式,我們會一併指定測試的時間
再加上 ERROR(/#testEnded(com.android.tradefed.result.TestDescription,long,Map))
,才能取得準確的測量結果
參數 | |
---|---|
test |
TestDescription :識別測試 |
startTime |
long :測試開始的時間,透過 System.currentTimeMillis() 進行測量 |
testStarted
public void testStarted (TestDescription test)
回報個別測試案例的開頭。舊版介面,應盡可能使用 testStarted(com.android.tradefed.result.TestDescription)
。
參數 | |
---|---|
test |
TestDescription :識別測試 |