AD0-E136 · Question #87
A developer is tasked with generating test reports for UI testing in AEMCS using a Docker image. What format should these test reports be generated in, as per the best practice?
The correct answer is B. JUnit XML format. JUnit XML is the industry-standard format for test reporting in CI/CD pipelines, and AEM Cloud Service (AEMCS) specifically requires UI test results in this format so that the Cloud Manager pipeline can parse, interpret, and surface pass/fail results automatically. CSV (A) is a…
Question
A developer is tasked with generating test reports for UI testing in AEMCS using a Docker image. What format should these test reports be generated in, as per the best practice?
Options
- ACSV format
- BJUnit XML format
- CHTML format
- DJSON format
How the community answered
(56 responses)- A5% (3)
- B82% (46)
- C9% (5)
- D4% (2)
Explanation
JUnit XML is the industry-standard format for test reporting in CI/CD pipelines, and AEM Cloud Service (AEMCS) specifically requires UI test results in this format so that the Cloud Manager pipeline can parse, interpret, and surface pass/fail results automatically. CSV (A) is a data exchange format with no semantic structure for test outcomes, making it unreadable by testing frameworks. HTML (C) is human-readable but not machine-parseable by pipeline tools, so Cloud Manager cannot programmatically evaluate test success. JSON (D) is flexible but is not the standardized contract that AEM's testing infrastructure expects for UI test result ingestion.
Memory tip: Think "JUnit = Unit of truth for pipelines" - any CI/CD system, including AEMCS, speaks JUnit XML as its native test-results language. If you see "CI/CD test reporting" on the exam, JUnit XML is almost always the answer.
Topics
Community Discussion
No community discussion yet for this question.