/platform_testing/libraries/compatibility-common-util/tests/src/com/android/compatibility/common/util/ |
D | ReportLogTest.java | 93 ReportLog report = ReportLog.parse(HEADER_XML); in testParse_noData() local 94 assertNull(report.getSummary()); in testParse_noData() 98 ReportLog report = ReportLog.parse(String.format(SUMMARY_XML, "testParse_summaryOnly:125")); in testParse_summaryOnly() local 99 assertNotNull(report); in testParse_summaryOnly() 100 assertEquals("Sample", report.getSummary().getMessage()); in testParse_summaryOnly() 104 ReportLog report = ReportLog.parse(String.format(FULL_XML, "testParse_full:140")); in testParse_full() local 105 assertNotNull(report); in testParse_full() 106 assertEquals("Sample", report.getSummary().getMessage()); in testParse_full()
|
D | ResultHandlerTest.java | 238 ReportLog report = new ReportLog(); in testSerialization() local 241 report.setSummary(summary); in testSerialization() 242 moduleBTest4.setReportLog(report); in testSerialization() 328 ReportLog report = new ReportLog(); in testSerialization_whenTestResultWithTestResultHistoryWithoutParsing() local 336 report.setSummary(summary); in testSerialization_whenTestResultWithTestResultHistoryWithoutParsing() 337 moduleBTest4.setReportLog(report); in testSerialization_whenTestResultWithTestResultHistoryWithoutParsing() 648 ReportLog report = moduleBTest4.getReportLog(); in checkResult() local 649 assertNotNull("Expected report", report); in checkResult() 650 ReportLog.Metric summary = report.getSummary(); in checkResult()
|
/platform_testing/libraries/screenshot/src/main/java/platform/test/screenshot/report/ |
D | ScubaExportStrategy.kt | 17 package platform.test.screenshot.report 74 val report = Bundle() in reportResult() constant 78 report.putString(bundleKeyPrefix + OutputFileType.IMAGE_ACTUAL, it.absolutePath) in reportResult() 83 report.putString(bundleKeyPrefix + OutputFileType.IMAGE_DIFF, it.absolutePath) in reportResult() 89 report.putString(bundleKeyPrefix + OutputFileType.IMAGE_EXPECTED, it.absolutePath) in reportResult() 97 report.putString(bundleKeyPrefix + OutputFileType.RESULT_PROTO, it.absolutePath) in reportResult() 104 report.putString(bundleKeyPrefix + OutputFileType.RESULT_BIN_PROTO, it.absolutePath) in reportResult() 107 InstrumentationRegistry.getInstrumentation().sendStatus(bundleStatusInProgress, report) in reportResult()
|
D | DiffResultExportStrategy.kt | 17 package platform.test.screenshot.report
|
D | DevicelessDevMachineExportStrategy.kt | 17 package platform.test.screenshot.report in <lambda>()
|
/platform_testing/libraries/compatibility-common-util/src/com/android/compatibility/common/util/ |
D | TestResult.java | 124 public void setReportLog(ReportLog report) { in setReportLog() argument 125 mReport = report; in setReportLog() 197 public void passed(ReportLog report) { in passed() argument 201 if (report != null) { in passed() 202 setReportLog(report); in passed()
|
D | ITestResult.java | 76 void setReportLog(ReportLog report); in setReportLog() argument 120 void passed(ReportLog report); in passed() argument
|
D | ReportLog.java | 368 ReportLog report = new ReportLog(); in parse() local 369 report.setSummary(Metric.parse(parser)); in parse() 372 return report; in parse()
|
D | ResultHandler.java | 556 ReportLog report = r.getReportLog(); in writeResults() local 557 if (report != null) { in writeResults() 558 ReportLog.serialize(serializer, report); in writeResults()
|
/platform_testing/libraries/screenshot/src/androidTest/java/platform/test/screenshot/report/ |
D | ScubaExportStrategyTest.kt | 17 package platform.test.screenshot.report 34 import platform.test.screenshot.report.OutputFileType.IMAGE_ACTUAL 35 import platform.test.screenshot.report.OutputFileType.IMAGE_DIFF 36 import platform.test.screenshot.report.OutputFileType.IMAGE_EXPECTED 37 import platform.test.screenshot.report.OutputFileType.RESULT_BIN_PROTO 38 import platform.test.screenshot.report.OutputFileType.RESULT_PROTO
|
/platform_testing/libraries/collectors-helper/statsd/src/com/android/helpers/ |
D | StatsdStatsHelper.java | 84 final StatsLog.StatsdStatsReport report = mStatsdHelper.getStatsdStatsReport(); in getMetrics() local 85 populateAtomStats(report.atomStats, resultMap); in getMetrics() 86 populateConfigStats(report.configStats, resultMap); in getMetrics() 87 populateAnomalyAlarmStats(report.anomalyAlarmStats, resultMap); in getMetrics() 88 populatePulledAtomStats(report.pulledAtomStats, resultMap); in getMetrics() 89 populateAtomMetricStats(report.atomMetricStats, resultMap); in getMetrics() 90 populateDetectedLogLossStats(report.detectedLogLoss, resultMap); in getMetrics() 91 populateEventQueueOverflowStats(report.queueOverflow, resultMap); in getMetrics()
|
D | StatsdHelper.java | 198 com.android.os.nano.StatsLog.StatsdStatsReport report = in getStatsdStatsReport() local 203 report = com.android.os.nano.StatsLog.StatsdStatsReport.parseFrom(serializedReports); in getStatsdStatsReport() 208 return report; in getStatsdStatsReport() 385 com.android.os.nano.StatsLog.StatsdStatsReport report = getStatsdStatsReport(); in verifyConfigIsRegistered() local 387 report.configStats) { in verifyConfigIsRegistered()
|
/platform_testing/libraries/motion/src/platform/test/motion/ |
D | MotionTestRule.kt | 40 import platform.test.screenshot.report.ExportToScubaStrategy in <lambda>()
|
/platform_testing/tests/bettertogether/betocq/ |
D | ReadMe.md | 123 - Simplifies the test report review with the visualized test summary. 448 logcat and bug report: 451 3. Review the logcat and bug report of each failing iteration on both 455 4. Search the following keywords for the related logs in the bug report: 458 5. Review the Wi-Fi Direct logs in the bug report if the `WIFI_DIRECT` medium is used.
|
/platform_testing/libraries/screenshot/src/androidTest/java/platform/test/screenshot/ |
D | ScreenshotTestRuleTest.kt | 40 import platform.test.screenshot.report.DiffResultExportStrategy
|
/platform_testing/libraries/screenshot/src/main/java/platform/test/screenshot/ |
D | ScreenshotTestRule.kt | 39 import platform.test.screenshot.report.DiffResultExportStrategy in <lambda>()
|