Searched refs:testDescription (Results 1 – 3 of 3) sorted by relevance
/test/catbox/report/src/com/android/catbox/util/ |
D | TestMetricsUtil.java | 80 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/ |
D | TestMetricsJsonResultReporter.java | 161 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/ |
D | JsonResultReporter.java | 331 public void testEnded(TestDescription testDescription, HashMap<String, Metric> metrics) { in testEnded() argument 335 mTestMetricsUtil.storeTestMetrics(testDescription, metrics); in testEnded()
|