TestResultListener

public abstract class TestResultListener
extends Object implements ITestLifeCycleReceiver

java.lang.Object
   ↳ com.android.tradefed.result.TestResultListener


简化了 ITestLifecycleListener,适用于仅关心各个测试结果的实现者。

它会将各种生命周期事件过滤到 testResult 方法。

这不是线程安全的,具体来说是假定按顺序接收 ITestLifecycleListener 事件。

摘要

公共构造函数

TestResultListener()

公共方法

final void testAssumptionFailure(TestDescription test, String trace)

当原子测试标记为假的假设条件时调用

final void testEnded(TestDescription test, testMetrics)

报告单个测试用例的执行完毕。

final void testEnded(TestDescription test, long endTime, testMetrics)

ERROR(/#testEnded(com.android.tradefed.result.TestDescription,Map)) 的替代方案,我们可以直接指定结束时间。

final void testFailed(TestDescription test, String trace)

报告单个测试用例的失败。

final void testIgnored(TestDescription test)

当测试不会运行时调用,通常是因为测试方法带有 org.junit.Ignore 注解。

abstract void testResult(TestDescription test, TestResult result)
void testRunEnded(long elapsedTimeMillis, runMetrics)

报告测试运行结束。

void testSkipped(TestDescription test, SkipReason reason)

当测试因通常不预期的某种原因而被跳过且未执行时调用。

final void testStarted(TestDescription test, long startTime)

testStarted(com.android.tradefed.result.TestDescription) 的替代项,我们还指定测试的开始时间,与 ERROR(/#testEnded(com.android.tradefed.result.TestDescription,long,Map)) 结合使用以实现准确的测量。

final void testStarted(TestDescription test)

报告单个测试用例的开始。

公共构造函数

TestResultListener

public TestResultListener ()

公共方法

testAssumptionFailure

public final void testAssumptionFailure (TestDescription test, 
                String trace)

当原子测试标记为假的假设条件时调用

参数
test TestDescription:标识测试

trace String:失败的堆栈轨迹

testEnded

public final void testEnded (TestDescription test, 
                 testMetrics)

报告单个测试用例的执行结束。

如果未调用 testFailed(TestDescription, FailureDescription),则表示此测试已通过。此外,还会返回测试用例执行期间可能发出的任何键值指标。

参数
test TestDescription:标识测试

testMetrics :发出的指标的 ERROR(/Map)

testEnded

public final 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)

testFailed

public final void testFailed (TestDescription test, 
                String trace)

报告单个测试用例的失败情况。

将在 testStarted 和 testEnded 之间调用。

参数
test TestDescription:标识测试

trace String:失败的堆栈轨迹

testIgnored

public final void testIgnored (TestDescription test)

当测试不会运行时调用,通常是因为测试方法带有 org.junit.Ignore 注解。

参数
test TestDescription:用于标识测试

testResult

public abstract void testResult (TestDescription test, 
                TestResult result)

参数
test TestDescription

result TestResult

testRunEnded

public void testRunEnded (long elapsedTimeMillis, 
                 runMetrics)

报告测试运行结束。

参数
elapsedTimeMillis long:设备报告的所用时间(以毫秒为单位)

runMetrics :测试运行结束时报告的键值对

testSkipped

public void testSkipped (TestDescription test, 
                SkipReason reason)

当测试因非预期原因而被跳过且未执行时调用。 系统会尝试重试这些测试,以便正确执行。

参数
test TestDescription:用于标识测试

reason SkipReasonSkipReason

testStarted

public final 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 final void testStarted (TestDescription test)

报告单个测试用例的开始。旧版接口,应尽可能使用 testStarted(com.android.tradefed.result.TestDescription)

参数
test TestDescription:用于标识测试