Skip to main content

Module junit

Module junit 

Source
Expand description

JUnit XML rendering of validation reports, for CI systems that ingest test result files.

Mapping (documented because JUnit has no native concept of a warning):

OutcomeJUnit representation
passpassing <testcase>
fail<failure> per requirement, findings in the body
warnpassing <testcase> with findings in <system-out> — SHOULD-level findings do not fail CI unless promoted by --strict, and that promotion is an exit-code concern, not a report concern
excluded / unsupported / not-applicable<skipped> with the reason as its message

The output is deterministic (registry order, no timestamps, no hostnames) for the same reason every other report format is: reports are artifacts.

Functions§

render
Renders the report as a single-suite JUnit XML document.