Package org.fhirfrog.frog.ant.report


package org.fhirfrog.frog.ant.report
Test report serialisation for Ant builds.

This package converts JUnit execution results into Surefire-format XML, making FHIR Frog test outcomes consumable by standard CI tooling and by the Ant <junitreport> task.

Key Classes

  • SurefireXmlWriter — Writes one TEST-&lt;name&gt;.xml file per invocation in the standard <testsuite>/<testcase> format recognised by Jenkins, GitLab CI, and mvn surefire-report:report

Output Format


 <testsuite name="patient-crud" tests="3" failures="1" errors="0" time="0">
   <testcase name="create patient" classname="patient-crud" time="0"/>
   <testcase name="read patient"   classname="patient-crud" time="0">
     <failure message="Expected 200 but was 404">...</failure>
   </testcase>
 </testsuite>
 
See Also: