Home
last modified time | relevance | path

Searched refs:report (Results 1 – 16 of 16) sorted by relevance

/platform_testing/libraries/compatibility-common-util/tests/src/com/android/compatibility/common/util/
DReportLogTest.java93 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()
DResultHandlerTest.java238 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/
DScubaExportStrategy.kt17 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()
DDiffResultExportStrategy.kt17 package platform.test.screenshot.report
DDevicelessDevMachineExportStrategy.kt17 package platform.test.screenshot.report in <lambda>()
/platform_testing/libraries/compatibility-common-util/src/com/android/compatibility/common/util/
DTestResult.java124 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()
DITestResult.java76 void setReportLog(ReportLog report); in setReportLog() argument
120 void passed(ReportLog report); in passed() argument
DReportLog.java368 ReportLog report = new ReportLog(); in parse() local
369 report.setSummary(Metric.parse(parser)); in parse()
372 return report; in parse()
DResultHandler.java556 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/
DScubaExportStrategyTest.kt17 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/
DStatsdStatsHelper.java84 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()
DStatsdHelper.java198 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/
DMotionTestRule.kt40 import platform.test.screenshot.report.ExportToScubaStrategy in <lambda>()
/platform_testing/tests/bettertogether/betocq/
DReadMe.md123 - 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/
DScreenshotTestRuleTest.kt40 import platform.test.screenshot.report.DiffResultExportStrategy
/platform_testing/libraries/screenshot/src/main/java/platform/test/screenshot/
DScreenshotTestRule.kt39 import platform.test.screenshot.report.DiffResultExportStrategy in <lambda>()