PythonBinaryHostTest.PythonForwarder

public static class PythonBinaryHostTest.PythonForwarder
extends ResultForwarder

java.lang.Object
   ↳ com.android.tradefed.result.ResultForwarder
     ↳ com.android.tradefed.testtype.python.PythonBinaryHostTest.PythonForwarder


実行名をバイナリ名に置き換える結果フォワーダー。

概要

パブリック コンストラクタ

PythonForwarder(ITestInvocationListener listener, String name)

Ctor は、バイナリ名を使用して実行名に置き換えます。

パブリック メソッド

void testRunStarted(String runName, int testCount)

テスト実行の開始を報告します。

void testRunStarted(String runName, int testCount, int attempt, long startTime)

テスト実行の開始を報告します。

void testRunStarted(String runName, int testCount, int attempt)

テスト実行の開始を報告します。

パブリック コンストラクタ

Python フォワーダー

public PythonForwarder (ITestInvocationListener listener, 
                String name)

Ctor は、バイナリ名を使用して実行名に置き換えます。

パラメータ
listener ITestInvocationListener

name String

パブリック メソッド

testRunStarted

public void testRunStarted (String runName, 
                int testCount)

テスト実行の開始を報告します。

パラメータ
runName String: テスト実行名

testCount int: テスト実行中のテストの合計数

testRunStarted

public void testRunStarted (String runName, 
                int testCount, 
                int attempt, 
                long startTime)

テスト実行の開始を報告します。

パラメータ
runName String: テスト実行名

testCount int: テスト実行中のテストの合計数

attempt int: 同じ runName の異なる試行を識別する注文番号 実行されるリソースのことですtryNumber の値は 0 から始まり、 発生します。例:テストを細かく 3 回再試行する(合計 4 回の実行が必要) 同じ runName で指定され、trialNumber は 0 ~ 3 です。

startTime long: 実行の開始時刻(System.currentTimeMillis() で測定)

testRunStarted

public void testRunStarted (String runName, 
                int testCount, 
                int attempt)

テスト実行の開始を報告します。

パラメータ
runName String: テスト実行名

testCount int: テスト実行中のテストの合計数

attempt int: 同じ runName の異なる試行を識別する注文番号 実行されるリソースのことですtryNumber の値は、0 から始まる番号で、毎回増分する必要があります。 発生します。例:テストは詳細に 3 回再試行され、合計 4 回試行される必要がある 同じ runName で実行され、AttemptNumber の値は 0 ~ 3 です。