JUnitToInvocationResultForwarder

public class JUnitToInvocationResultForwarder
extends Object implements TestListener

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


TestListener イベントをリッスンして ITestInvocationListener

概要

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

JUnitToInvocationResultForwarder(ITestInvocationListener invocationListener)
JUnitToInvocationResultForwarder( invocationListeners)

パブリック メソッド

void addError(Test test, Throwable t)

void addFailure(Test test, AssertionFailedError t)

void endTest(Test test, metrics)

指標を転送できる JUnit3 テストからのコールバック。

void endTest(Test test)

void startTest(Test test)

void testLog(String dataName, LogDataType dataType, InputStreamSource dataStream)

テストからログを取得するための JUnit3 フォワーダーからのコールバック。

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

JUnitToInvocationResultForwarder

public JUnitToInvocationResultForwarder (ITestInvocationListener invocationListener)

パラメータ
invocationListener ITestInvocationListener

JUnitToInvocationResultForwarder

public JUnitToInvocationResultForwarder ( invocationListeners)

パラメータ
invocationListeners

パブリック メソッド

addError

public void addError (Test test, 
                Throwable t)

パラメータ
test Test

t Throwable

追加エラー

public void addFailure (Test test, 
                AssertionFailedError t)

パラメータ
test Test

t AssertionFailedError

endTest

public void endTest (Test test, 
                 metrics)

指標を転送できる JUnit3 テストからのコールバック。

パラメータ
test Test: 実行が完了したばかりの Test

metrics : 結果のコールバックに渡される Map 形式の指標。

endTest

public void endTest (Test test)

パラメータ
test Test

startTest

public void startTest (Test test)

パラメータ
test Test

testLog

public void testLog (String dataName, 
                LogDataType dataType, 
                InputStreamSource dataStream)

テストからログを取得するための JUnit3 フォワーダーからのコールバック。

パラメータ
dataName String: 文字列のわかりやすいデータ名。例:「device_logcat」。メモ dataName 呼び出しごとに一意でない場合があります。つまり、実装者は複数の呼び出しを処理できなければなりません。 同じ dataName

dataType LogDataType: データの LogDataType

dataStream InputStreamSource: データの InputStreamSource。実装担当者は createInputStream を実装してデータの読み取りを開始し、 InputStream。呼び出し元は、データソースが引き続き存在していることを確認する必要がある testLog メソッドが完了するまでアクセスできます。