TestRunResult
public
class
TestRunResult
extends Object
java.lang.Object | |
↳ | com.android.tradefed.result.TestRunResult |
単一のテスト実行の結果を保持します。
テストの正確なカウントを維持し、不完全なテストを追跡します。
スレッドセーフではありません。test* コールバックは順番に呼び出す必要があります。
概要
フィールド | |
---|---|
public
static
final
String |
ERROR_DIVIDER
|
パブリック コンストラクタ | |
---|---|
TestRunResult()
空の |
パブリック メソッド | |
---|---|
|
getCompletedTests()
完了したテストのセットを取得します。 |
long
|
getElapsedTime()
現在の実行経過時間を返します。 |
int
|
getExpectedTestCount()
この TestRunResult で想定されるテストケースの数を取得します。 |
|
getFailedTests()
失敗したテストのセットを取得します。 |
String
|
getName()
|
int
|
getNumAllFailedTests()
不合格状態(不合格、仮定)のテストの合計数を返す |
int
|
getNumCompleteTests()
この実行の完了済みテストの数、つまりステータスが != 未完了のものを取得します。 |
int
|
getNumTests()
この実行に含まれるテストの数を取得します。 |
int
|
getNumTestsInState(TestStatus status)
この実行に対して指定された状態のテストの数を取得します。 |
int
|
getNumTestsInState(TestResult.TestStatus ddmlibStatus)
旧ステータスとの互換性について。 |
|
getPassedTests()
合格したテストのセットを取得します。 |
FailureDescription
|
getRunFailureDescription()
実行が失敗していない場合は |
String
|
getRunFailureMessage()
実行が失敗していない場合は、実行失敗のエラー メッセージ |
MultiMap<String, LogFile>
|
getRunLoggedFiles()
そのテストケースに関連するすべてのログファイルを含む地図のコピーを返します。 |
|
getRunMetrics()
|
|
getRunProtoMetrics()
|
long
|
getStartTime()
最初の testRunStart 呼び出しの開始時間を返します。 |
|
getTestResults()
テスト結果のマップを返します。 |
|
getTestsInState(
指定されたステータスのテストのセットを取得します。 |
|
getTestsResultsInState(TestStatus status)
特定の状態の |
String
|
getTextSummary()
結果を説明する、ユーザー フレンドリーな文字列を返します。 |
boolean
|
hasFailedTests()
|
boolean
|
isRunComplete()
|
boolean
|
isRunFailure()
|
static
TestRunResult
|
merge(
|
static
TestRunResult
|
merge(
同じ testRunName の複数の TestRunResults をマージ。 |
void
|
resetRunFailure()
実行の失敗ステータスをリセットします。 |
void
|
setAggregateMetrics(boolean metricAggregation)
|
void
|
setRunComplete(boolean runComplete)
|
void
|
testAssumptionFailure(TestDescription test, String trace)
|
void
|
testAssumptionFailure(TestDescription test, FailureDescription failure)
|
void
|
testEnded(TestDescription test, long endTime,
|
void
|
testEnded(TestDescription test,
|
void
|
testFailed(TestDescription test, FailureDescription failure)
|
void
|
testFailed(TestDescription test, String trace)
|
void
|
testIgnored(TestDescription test)
|
void
|
testLogSaved(String dataName, LogFile logFile)
ログに記録されたファイルに関する情報が保存され、テストケースまたはテスト実行に関連付けられます。 処理中です。 |
void
|
testRunEnded(long elapsedTime,
新しい proto 指標を使用する新しいインターフェース。 |
void
|
testRunFailed(FailureDescription failureDescription)
|
void
|
testRunFailed(String errorMessage)
|
void
|
testRunStarted(String runName, int testCount, long startTime)
テスト実行が開始されたことを通知します。 |
void
|
testRunStarted(String runName, int testCount)
テスト実行が開始されたことを通知します。 |
void
|
testRunStopped(long elapsedTime)
|
void
|
testSkipped(TestDescription test, SkipReason reason)
|
void
|
testStarted(TestDescription test, long startTime)
|
void
|
testStarted(TestDescription test)
|
フィールド
エラーの区切り
public static final String ERROR_DIVIDER
パブリック コンストラクタ
パブリック メソッド
getCompletedTests
publicgetCompletedTests ()
完了したテストのセットを取得します。
戻り値 | |
---|---|
|
getElapsedTime
public long getElapsedTime ()
現在の実行経過時間を返します。
戻り値 | |
---|---|
long |
getExpectTestCount
public int getExpectedTestCount ()
この TestRunResult で想定されるテストケースの数を取得します。実際の数は 想定より少ない割合です。通常、このような不一致は、 表示されます。
戻り値 | |
---|---|
int |
getFailedTests
publicgetFailedTests ()
失敗したテストのセットを取得します。
戻り値 | |
---|---|
|
getName
public String getName ()
戻り値 | |
---|---|
String |
テスト実行名 |
getNumAllFailedTests
public int getNumAllFailedTests ()
不合格状態(不合格、仮定)のテストの合計数を返す
戻り値 | |
---|---|
int |
getNumCompleteTests
public int getNumCompleteTests ()
この実行の完了済みテストの数、つまりステータスが != 未完了のものを取得します。
戻り値 | |
---|---|
int |
getNumTests
public int getNumTests ()
この実行に含まれるテストの数を取得します。
戻り値 | |
---|---|
int |
getNumTestsInState
public int getNumTestsInState (TestStatus status)
この実行に対して指定された状態のテストの数を取得します。
パラメータ | |
---|---|
status |
TestStatus |
戻り値 | |
---|---|
int |
getNumTestsInState
public int getNumTestsInState (TestResult.TestStatus ddmlibStatus)
古いステータスとの互換性があります。代わりに getNumTestsInState(com.android.tradefed.result.TestStatus)
を使用する。
パラメータ | |
---|---|
ddmlibStatus |
TestResult.TestStatus |
戻り値 | |
---|---|
int |
getPassedTests
publicgetPassedTests ()
合格したテストのセットを取得します。
戻り値 | |
---|---|
|
getRunFailureDescription
public FailureDescription getRunFailureDescription ()
実行が失敗していない場合は null
を返します。
戻り値 | |
---|---|
FailureDescription |
getRunFailureMessage
public String getRunFailureMessage ()
実行が失敗していない場合は、実行失敗のエラー メッセージ null
を返します。
戻り値 | |
---|---|
String |
getRunLoggedFiles
public MultiMap<String, LogFile> getRunLoggedFiles ()
そのテストケースに関連するすべてのログファイルを含む地図のコピーを返します。
戻り値 | |
---|---|
MultiMap<String, LogFile> |
getStartTime
public long getStartTime ()
最初の testRunStart 呼び出しの開始時間を返します。
戻り値 | |
---|---|
long |
getTestResults
publicgetTestResults ()
テスト結果のマップを返します。
戻り値 | |
---|---|
|
getTestsInState
publicgetTestsInState ( statuses)
指定されたステータスのテストのセットを取得します。
パラメータ | |
---|---|
statuses |
|
戻り値 | |
---|---|
|
getTestsResultsInState
publicgetTestsResultsInState (TestStatus status)
特定の状態の TestResult
をすべて返します。
パラメータ | |
---|---|
status |
TestStatus |
戻り値 | |
---|---|
|
getTextSummary
public String getTextSummary ()
結果を説明する、ユーザー フレンドリーな文字列を返します。
戻り値 | |
---|---|
String |
hasFailedTests
public boolean hasFailedTests ()
戻り値 | |
---|---|
boolean |
true : テストの失敗またはエラーテストがある場合。 |
isRunComplete
public boolean isRunComplete ()
戻り値 | |
---|---|
boolean |
テスト実行が終了した場合は true 。 |
isRunFailure
public boolean isRunFailure ()
戻り値 | |
---|---|
boolean |
テスト実行が失敗した場合は true 。 |
外部データを統合して表示
public static TestRunResult merge (testRunResults)
パラメータ | |
---|---|
testRunResults |
|
戻り値 | |
---|---|
TestRunResult |
外部データを統合して表示
public static TestRunResult merge (testRunResults, MergeStrategy strategy)
同じ testRunName の複数の TestRunResults をマージ。テストケースが複数ある場合 TestRunResults の結果が異なる(例: 「boottest-device」が結果で 3 回実行される) 失敗した実行のすべてのスタック トレースを連結し、最終的な 実行結果(ステータス、指標、ログファイル、開始時間/終了時間)。
パラメータ | |
---|---|
testRunResults |
: マージする TestRunResult のリスト。 |
strategy |
MergeStrategy : 結果の統合に採用された統合戦略。 |
戻り値 | |
---|---|
TestRunResult |
testRunResults のマージデータを含む最終的な TestRunResult。 |
resetRunFailure(リセット実行エラー)
public void resetRunFailure ()
実行の失敗ステータスをリセットします。
再試行時に、実行失敗ステータスのリセットが必要になる場合があります。これを行う必要があります 注意深く行う必要があります。
setAggregateMetrics
public void setAggregateMetrics (boolean metricAggregation)
パラメータ | |
---|---|
metricAggregation |
boolean |
setRunComplete
public void setRunComplete (boolean runComplete)
パラメータ | |
---|---|
runComplete |
boolean |
testAssumptionFailure
public void testAssumptionFailure (TestDescription test, String trace)
パラメータ | |
---|---|
test |
TestDescription |
trace |
String |
testAssumptionFailure
public void testAssumptionFailure (TestDescription test, FailureDescription failure)
パラメータ | |
---|---|
test |
TestDescription |
failure |
FailureDescription |
testEnded
public void testEnded (TestDescription test, long endTime,testMetrics)
パラメータ | |
---|---|
test |
TestDescription |
endTime |
long |
testMetrics |
|
testEnded
public void testEnded (TestDescription test,testMetrics)
パラメータ | |
---|---|
test |
TestDescription |
testMetrics |
|
testFailed
public void testFailed (TestDescription test, FailureDescription failure)
パラメータ | |
---|---|
test |
TestDescription |
failure |
FailureDescription |
testFailed
public void testFailed (TestDescription test, String trace)
パラメータ | |
---|---|
test |
TestDescription |
trace |
String |
testLogSaved
public void testLogSaved (String dataName, LogFile logFile)
ログに記録されたファイルに関する情報が保存され、テストケースまたはテスト実行に関連付けられます。 処理中です。
パラメータ | |
---|---|
dataName |
String : データを参照する名前。 |
logFile |
LogFile : オブジェクトの保存場所を表す LogFile オブジェクト。
表示されます。 |
testRunEnded
public void testRunEnded (long elapsedTime,runMetrics)
新しい proto 指標を使用する新しいインターフェース。
パラメータ | |
---|---|
elapsedTime |
long |
runMetrics |
|
testRunFailed
public void testRunFailed (FailureDescription failureDescription)
パラメータ | |
---|---|
failureDescription |
FailureDescription |
testRunFailed
public void testRunFailed (String errorMessage)
パラメータ | |
---|---|
errorMessage |
String |
testRunStarted
public void testRunStarted (String runName, int testCount, long startTime)
テスト実行が開始されたことを通知します。
パラメータ | |
---|---|
runName |
String : トラッキングを目的としたテスト実行に関連付けられた名前。 |
testCount |
int : テスト実行に関連する想定されるテストケースの数。 |
startTime |
long |
testRunStarted
public void testRunStarted (String runName, int testCount)
テスト実行が開始されたことを通知します。
パラメータ | |
---|---|
runName |
String : トラッキングを目的としたテスト実行に関連付けられた名前。 |
testCount |
int : テスト実行に関連する想定されるテストケースの数。 |
testRunStopped
public void testRunStopped (long elapsedTime)
パラメータ | |
---|---|
elapsedTime |
long |
testSkipped
public void testSkipped (TestDescription test, SkipReason reason)
パラメータ | |
---|---|
test |
TestDescription |
reason |
SkipReason |
testStarted
public void testStarted (TestDescription test, long startTime)
パラメータ | |
---|---|
test |
TestDescription |
startTime |
long |