테스트 그룹 상태
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 |
JSON으로 변환
public JSONObject toJSON ()
반환 값 | |
---|---|
JSONObject |
생성 값 | |
---|---|
JSONException |