Home
last modified time | relevance | path

Searched refs:testDescription (Results 1 – 3 of 3) sorted by relevance

/test/catbox/report/src/com/android/catbox/util/
DTestMetricsUtil.java80 public void storeTestMetrics(TestDescription testDescription, Map<String, Metric> testMetrics) { in storeTestMetrics() argument
86 String className = testDescription.getClassName(); in storeTestMetrics()
87 int iterationSeparatorIndex = testDescription.getClassName() in storeTestMetrics()
90 className = testDescription.getClassName().substring(0, iterationSeparatorIndex); in storeTestMetrics()
92 String newTestId = CLASS_METHOD_JOINER.join(className, testDescription.getTestName()); in storeTestMetrics()
107 key.contains(testDescription.getClassName())) { in storeTestMetrics()
109 key = CLASS_METHOD_JOINER.join(key, testDescription.getTestName()); in storeTestMetrics()
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/suite/
DTestMetricsJsonResultReporter.java161 TestDescription testDescription, HashMap<String, Metric> metrics) { in writeTestMetrics() argument
163 String classMethodName = testDescription.toString(); in writeTestMetrics()
297 public void testEnded(TestDescription testDescription, HashMap<String, Metric> metrics) { in testEnded() argument
300 writeTestMetrics(testDescription, metrics); in testEnded()
/test/catbox/report/src/com/android/catbox/result/
DJsonResultReporter.java331 public void testEnded(TestDescription testDescription, HashMap<String, Metric> metrics) { in testEnded() argument
335 mTestMetricsUtil.storeTestMetrics(testDescription, metrics); in testEnded()