pub fn render(report: &Report) -> StringExpand description
Renders the report as a single-suite JUnit XML document.
use mcp_conformance_core::requirement::Registry;
use mcp_trace_validator::{engine, junit};
let registry = Registry::builtin_2025_11_25()?;
let xml = junit::render(&engine::validate(®istry, &[]));
assert!(xml.starts_with(r#"<?xml version="1.0" encoding="UTF-8"?>"#));