Home
last modified time | relevance | path

Searched refs:testResults (Results 1 – 13 of 13) sorted by relevance

/tools/tradefederation/core/prod-tests/src/com/android/framework/tests/
DDataIdleTest.java103 Collection<TestResult> testResults = in run() local
105 if (testResults != null && testResults.iterator().hasNext()) { in run()
106 Map<String, String> testMetrics = testResults.iterator().next().getMetrics(); in run()
DFrameworkPerfTest.java134 List<TestResult> testResults = in run() local
137 if (!testResults.isEmpty()) { in run()
138 Map<String, String> testMetrics = testResults.get(0).getMetrics(); in run()
DFrameworkStressTest.java90 Map<TestDescription, TestResult> testResults = in run() local
92 if (testResults != null) { in run()
93 for (Entry<TestDescription, TestResult> e : testResults.entrySet()) { in run()
DBandwidthMicroBenchMarkTest.java144 Collection<TestResult> testResults = in run() local
146 if (testResults != null && testResults.iterator().hasNext()) { in run()
147 Map<String, String> testMetrics = testResults.iterator().next().getMetrics(); in run()
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/metricregression/
DDetectRegressionTest.java160 MultiMap<String, TableRow> testResults = testResultCaptor.getValue(); in testRunRegressionDetection() local
161 assertEquals(1, testResults.size()); in testRunRegressionDetection()
162 assertEquals(1, testResults.get(id2.toString()).size()); in testRunRegressionDetection()
163 assertEquals("metric-6", testResults.get(id2.toString()).get(0).name); in testRunRegressionDetection()
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/suite/
DGranularRetriableTestWrapperTest.java205 Map<TestDescription, TestResult> testResults = in testRun_withMultipleRun() local
207 testResults.containsKey(fakeTestCase); in testRun_withMultipleRun()
209 assertEquals(TestStatus.FAILURE, testResults.get(fakeTestCase).getStatus()); in testRun_withMultipleRun()
212 assertEquals(stacktrace, testResults.get(fakeTestCase).getStackTrace()); in testRun_withMultipleRun()
/tools/tradefederation/core/src/com/android/tradefed/result/
DMetricsXMLResultReporter.java138 Map<TestDescription, TestResult> testResults = runResult.getTestResults(); in printRunResults() local
139 for (TestDescription test : testResults.keySet()) { in printRunResults()
140 printTestResults(serializer, test, testResults.get(test)); in printRunResults()
DConsoleResultReporter.java110 Map<TestDescription, TestResult> testResults = testRunResult.getTestResults(); in getTestRunSummary() local
111 for (Map.Entry<TestDescription, TestResult> entry : testResults.entrySet()) { in getTestRunSummary()
DXmlResultReporter.java164 Map<TestDescription, TestResult> testResults = runResult.getTestResults(); in printTestResults() local
165 for (Map.Entry<TestDescription, TestResult> testEntry : testResults.entrySet()) { in printTestResults()
/tools/tradefederation/core/src/com/android/tradefed/invoker/
DShardListener.java173 private void forwardTestResults(Map<TestDescription, TestResult> testResults) { in forwardTestResults() argument
174 for (Map.Entry<TestDescription, TestResult> testEntry : testResults.entrySet()) { in forwardTestResults()
/tools/tradefederation/core/prod-tests/src/com/android/performance/tests/
DHermeticLaunchTest.java184 List<TestResult> testResults = new ArrayList<>( in run() local
190 mActivityTraceFileMap = testResults.get(0).getMetrics(); in run()
DAppTransitionTests.java671 List<TestResult> testResults = new ArrayList<>( in getAppComponentInfoMap() local
673 return testResults.get(0).getMetrics(); in getAppComponentInfoMap()
/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/
DModuleDefinition.java546 Map<TestDescription, TestResult> testResults, ITestInvocationListener listener) { in forwardTestResults() argument
547 for (Map.Entry<TestDescription, TestResult> testEntry : testResults.entrySet()) { in forwardTestResults()