Home
last modified time | relevance | path

Searched refs:TestStartedEventInfo (Results 1 – 4 of 4) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/result/
DLegacySubprocessResultsReporter.java34 import com.android.tradefed.util.SubprocessEventHelper.TestStartedEventInfo;
118 TestStartedEventInfo info = in testStarted()
119 new TestStartedEventInfo(testId.getClassName(), testId.getTestName(), startTime); in testStarted()
DSubprocessResultsReporter.java39 import com.android.tradefed.util.SubprocessEventHelper.TestStartedEventInfo;
217 TestStartedEventInfo info = in testStarted()
218 new TestStartedEventInfo(testId.getClassName(), testId.getTestName(), startTime); in testStarted()
/tools/tradefederation/core/src/com/android/tradefed/util/
DSubprocessEventHelper.java370 public static class TestStartedEventInfo extends BaseTestEventInfo { class in SubprocessEventHelper
373 public TestStartedEventInfo(String className, String testName, Long startTime) { in TestStartedEventInfo() method in SubprocessEventHelper.TestStartedEventInfo
378 public TestStartedEventInfo(JSONObject jsonObject) throws JSONException { in TestStartedEventInfo() method in SubprocessEventHelper.TestStartedEventInfo
DSubprocessTestResultsParser.java51 import com.android.tradefed.util.SubprocessEventHelper.TestStartedEventInfo;
450 TestStartedEventInfo bti = new TestStartedEventInfo(new JSONObject(eventJson)); in handleEvent()