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.java30 import com.android.tradefed.util.SubprocessEventHelper.TestStartedEventInfo;
82 TestStartedEventInfo info = in testStarted()
83 new TestStartedEventInfo(testId.getClassName(), testId.getTestName(), startTime); in testStarted()
DSubprocessResultsReporter.java37 import com.android.tradefed.util.SubprocessEventHelper.TestStartedEventInfo;
163 TestStartedEventInfo info = in testStarted()
164 new TestStartedEventInfo(testId.getClassName(), testId.getTestName(), startTime); in testStarted()
/tools/tradefederation/core/src/com/android/tradefed/util/
DSubprocessEventHelper.java250 public static class TestStartedEventInfo extends BaseTestEventInfo { class in SubprocessEventHelper
253 public TestStartedEventInfo(String className, String testName, Long startTime) { in TestStartedEventInfo() method in SubprocessEventHelper.TestStartedEventInfo
258 public TestStartedEventInfo(JSONObject jsonObject) throws JSONException { in TestStartedEventInfo() method in SubprocessEventHelper.TestStartedEventInfo
DSubprocessTestResultsParser.java38 import com.android.tradefed.util.SubprocessEventHelper.TestStartedEventInfo;
383 TestStartedEventInfo bti = new TestStartedEventInfo(new JSONObject(eventJson)); in handleEvent()