テストグループのステータス

public class TestGroupStatus
extends Object

java.lang.Object
   ↳ com.android.tradefed.cluster.TestGroupStatus


テストグループのステータスを保存するクラス。

テストグループは、同じテスト実行名でレポートされたテストケースのグループに対応します。

概要

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

TestGroupStatus(String name, int totalTestCount, int completedTestCount, int failedTestCount, int passedTestCount, boolean isComplete, long elapsedTime)

パブリック メソッド

int getCompletedTestCount()
long getElapsedTime()
int getFailedTestCount()
String getName()
int getPassedTestCount()
int getTotalTestCount()
boolean isComplete()
JSONObject toJSON()

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

テストグループのステータス

public TestGroupStatus (String name, 
                int totalTestCount, 
                int completedTestCount, 
                int failedTestCount, 
                int passedTestCount, 
                boolean isComplete, 
                long elapsedTime)

パラメータ
name String

totalTestCount int

completedTestCount int

failedTestCount int

passedTestCount int

isComplete boolean

elapsedTime long

パブリック メソッド

getCompletedTestCount

public int getCompletedTestCount ()

戻り値
int

getElapsedTime

public long getElapsedTime ()

戻り値
long

getFailedTestCount

public int getFailedTestCount ()

戻り値
int

getName

public String getName ()

戻り値
String

getPassedTestCount

public int getPassedTestCount ()

戻り値
int

getTotalTestCount

public int getTotalTestCount ()

戻り値
int

isComplete

public boolean isComplete ()

戻り値
boolean

toJSON

public JSONObject toJSON ()

戻り値
JSONObject

例外
JSONException