Searched refs:runResults (Results 1 – 8 of 8) sorted by relevance
/tools/tradefederation/core/tests/src/com/android/tradefed/result/suite/ |
D | XmlSuiteResultFormatterTest.java | 88 Collection<TestRunResult> runResults = new ArrayList<>(); in testBasicFormat() local 89 runResults.add(createFakeResult("module1", 2, 0, 0, 0)); in testBasicFormat() 90 runResults.add(createFakeResult("module2", 1, 0, 0, 0)); in testBasicFormat() 91 mResultHolder.runResults = runResults; in testBasicFormat() 142 Collection<TestRunResult> runResults = new ArrayList<>(); in testFailuresReporting() local 143 runResults.add(createFakeResult("module1", 2, 1, 0, 0)); in testFailuresReporting() 144 mResultHolder.runResults = runResults; in testFailuresReporting() 186 assertEquals(holder.runResults.size(), mResultHolder.runResults.size()); in testFailuresReporting() 194 Collection<TestRunResult> runResults = new ArrayList<>(); in testAssumptionFailures_Ignore_Reporting() local 195 runResults.add(createFakeResult("module1", 2, 0, 1, 1)); in testAssumptionFailures_Ignore_Reporting() [all …]
|
/tools/tradefederation/core/src/com/android/tradefed/testtype/ |
D | InstrumentationTest.java | 1087 TestRunResult runResults = collector.getCurrentRunResults(); in collectTestsAndRetry() local 1088 if (!instrResult || !runResults.isRunComplete()) { in collectTestsAndRetry() 1094 } else if (runResults.isRunFailure()) { in collectTestsAndRetry() 1098 runResults.getRunFailureMessage(), mPackageName, in collectTestsAndRetry() 1102 runResults.getRunFailureMessage())) { in collectTestsAndRetry() 1108 return runResults.getCompletedTests(); in collectTestsAndRetry()
|
/tools/tradefederation/contrib/tests/src/com/android/regression/tests/ |
D | DetectRegressionTest.java | 156 List<TableRow> runResults = runResultCaptor.getValue(); in testRunRegressionDetection() local 157 assertEquals(1, runResults.size()); in testRunRegressionDetection() 158 assertEquals("metric-3", runResults.get(0).name); in testRunRegressionDetection()
|
/tools/tradefederation/core/src/com/android/tradefed/result/ |
D | JsonHttpTestResultReporter.java | 155 JSONObject convertMetricsToJson(Collection<TestRunResult> runResults) throws JSONException { in convertMetricsToJson() argument 160 for (TestRunResult runResult : runResults) { in convertMetricsToJson()
|
/tools/tradefederation/contrib/src/com/android/performance/tests/ |
D | AppTransitionTests.java | 277 final TestRunResult runResults = mLaunchListener.getCurrentRunResults(); in runTests() local 278 if (runResults.isRunFailure()) { in runTests() 281 if (runResults.hasFailedTests()) { in runTests()
|
/tools/tradefederation/core/src/com/android/tradefed/result/suite/ |
D | SuiteResultHolder.java | 31 public Collection<TestRunResult> runResults; field in SuiteResultHolder
|
D | FormattedGeneratorReporter.java | 73 holder.runResults = getMergedTestRunResults(); in generateResultHolder()
|
D | XmlSuiteResultFormatter.java | 272 List<TestRunResult> sortedModuleList = sortModules(holder.runResults, holder.modulesAbi); in writeResults() 516 invocation.runResults = results; in parseResults()
|