ITestLifeCycleReceiver
public
interface
ITestLifeCycleReceiver
com.android.tradefed.result.ITestLifeCycleReceiver |
계측 테스트 실행 중에 이벤트 알림을 수신합니다.
org.junit.runner.notification.RunListener 뒤의 패턴입니다.
호출 순서는 다음과 같습니다.
- testRunStarted
- testStarted
- [테스트 실패]
- [testAssumptionFailure]
- [testIgnored]
- testEnded
- ....
- [테스트 실행 실패]
- 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 입니다. |
testEnded
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) |
testEnded
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 : 실패의 스택 트레이스 |
testIgnored
public void testIgnored (TestDescription test)
테스트가 실행되지 않을 때 호출됩니다. 일반적으로 테스트 메서드가 다음과 같이 주석 처리되어 있기 때문입니다. org.junit.Ignore를 사용하세요.
매개변수 | |
---|---|
test |
TestDescription : 테스트를 식별합니다. |
testRunEnded
public void testRunEnded (long elapsedTimeMillis,runMetrics)
테스트 실행 종료를 보고합니다. 수정: 두 개의 지도를 가질 수 없습니다<> 다른 유형의 인터페이스를 제공하기 때문에 여기서는 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에서 실행되며 시도Number는 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회 실행되어야 합니다.
0에서 3까지 동일한 runName으로 시도됩니다. |
startTime |
long : 실행이 시작된 시간으로, System.currentTimeMillis() 를 통해 측정됩니다. |
testRunStop
public void testRunStopped (long elapsedTime)
사용자 요청으로 인해 보고서 테스트 실행이 완료 전에 중지되었습니다.
TODO: 현재 사용되지 않습니다. 삭제하는 것이 좋습니다.
매개변수 | |
---|---|
elapsedTime |
long : 기기에서 보고된 경과 시간(밀리초)입니다. |
testSkipped
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 : 테스트를 식별합니다. |