JUnit XML — Maven-Surefire Dialect (surefire)
The same 12-case Novus Checkout run written the way maven-surefire 3.2 writes it. Maven Surefire merges its per-class files under a <testsuites> root and adds a <properties> block plus system-out/system-err on every suite. All eight dialect files in this group report 12 tests, 1 failure, 1 error and 1 skip, so a JUnit parser can be held to identical totals across every producer.
<?xml version="1.0" encoding="UTF-8"?>
<testsuites>
<testsuite name="cart.PricingTest" tests="5" failures="1" errors="0" skipped="0" time="3.744" timestamp="2026-08-07T09:14:22" hostname="ci-runner-04">
<properties>
<property name="java.version" value="21.0.3"/>
<property name="surefire.real.class.name" value="cart.PricingTest"/>
</properties>
<testcase classname="cart.PricingTest" name="appliesUnitPrice" time="0.643"/>
<testcase classname="cart.PricingTest" name="appliesQuantityMultiplier" time="0.659"/>
<testcase classname="cart.PricingTest" name="roundsHalfUpAtTwoDecimals" time="1.042"/>
<testcase classname="cart.PricingTest" name="rejectsNegativeQuantity" time="1.048"/>
<testcase classname="cart.PricingTest" name="appliesTaxToSubtotal" time="0.352">
<failure message="expected:<12.60> but was:<12.59>" type="java.lang.AssertionError"><![CDATA[java.lang.AssertionError: expected:<12.60> but was:<12.59>
at cart.PricingTest.appliesTaxToSubtotal(PricingTest.java:88)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
]]></failure>
</testcase>
<system-out><![CDATA[[INFO] Running cart.PricingTest
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>
<testsuite name="cart.DiscountTest" tests="4" failures="0" errors="0" skipped="1" time="2.067" timestamp="2026-08-07T09:14:22" hostname="ci-runner-04">
<properties>
<property name="java.version" value="21.0.3"/>
<property name="surefire.real.class.name" value="cart.DiscountTest"/>
</properties>
<testcase classname="cart.DiscountTest" name="appliesPercentageDiscount" time="0.147"/>
<testcase classname="cart.DiscountTest" name="stacksDiscountsInDeclaredOrder" time="0.327"/>
<testcase classname="cart.DiscountTest" name="ignoresExpiredCoupon" time="0.893"/>
<testcase classname="cart.DiscountTest" name="appliesLoyaltyTier" time="0.700">
<skipped message="loyalty tiers are disabled in the CI profile"/>
</testcase>
<system-out><![CDATA[[INFO] Running cart.DiscountTest
]]></system-out>
<system-err><![CDATA[]]></system-err>
</testsuite>
<testsuite name="checkout.SessionTest" tests="3" failures="0" errors="1" skipped="0" time="1.639" timestamp="2026-08-07T09:14:22" hostname="ci-runner-04">
<properties>
<property name="java.version" value="21.0.3"/>
<property name="surefire.real.class.name" value="checkout.SessionTest"/>
</properties>
<testcase classname="checkout.SessionTest" name="createsSessionForNewCart" time="0.783"/>
<testcase classname="checkout.SessionTest" name="expiresSessionAfterTimeout" time="0.695">
<error message="Connection refused: sessions.example.com:5432" type="java.net.ConnectException"><![CDATA[java.net.ConnectException: Connection refused: sessions.example.com:5432
at checkout.SessionStore.open(SessionStore.java:41)
at checkout.SessionTest.expiresSessionAfterTimeout(SessionTest.java:57)
]]></error>
</testcase>
<testcase classname="checkout.SessionTest" name="restoresCartOnResume" time="0.161"/>
<system-out><![CDATA[[INFO] Running checkout.SessionTestSpecifications
- Seed
- 61200
- Dialect
- surefire
- Producer
- maven-surefire 3.2
- Tests
- 12
- Failures
- 1
- Errors
- 1
- Skipped
- 1
- Passed
- 9
- Suite Time Seconds
- 7.45
- Root Element
- testsuites
- Encoding
- UTF-8
- Line Endings
- LF
Testing contract
Expected to pass- Scenario
- Parse a JUnit XML report produced in the surefire dialect and extract the run totals.
- Expected result
- 12 tests, 9 passed, 1 failure, 1 error and 1 skipped — identical to the other seven dialect files in this group.
What is a .xml file?
XML (Extensible Markup Language) is a verbose, self-describing markup language using nested tags, attributes, and namespaces to represent structured, hierarchical data. It supports schemas, entities, and validation and underlies many document and data formats. It remains common in enterprise, publishing, and interchange contexts.
How to use this file
Use an example XML file to test parsers, namespace and schema validation, XPath queries, and protection against entity-expansion and external-entity attacks.
How to use this file for testing
“JUnit XML — Maven-Surefire Dialect (surefire)” is a deterministic Novus Examples fixture for Conversion testing, Error handling, Log parsing. The same content exported across many formats and linked as a group, so you can convert one and diff against the expected twin.
Documented properties for this file: seed 61200 · UTF-8 · LF. Compare results against paired or grouped companions on this page when present (clean↔damaged, searchable↔scanned, or format twins) so scores stay reproducible across runs.
Download the file once, keep the path stable in CI or local scripts, and treat the spec table as the contract: dimensions, seeds, field lists, and roles are intentional. Corrupt or invalid samples are labelled as such — expect parsers to fail loudly rather than silently accept them.
Test and coverage reports document their totals (suites, cases, passes, failures, skips, covered lines) in the spec table. Point your CI dashboard, coverage gate, or report converter at the file and assert those counts survive; format twins carry identical numbers so a conversion can be scored exactly.
Code examples
import xml.etree.ElementTree as ET
tree = ET.parse("surefire-merged-results.xml")
root = tree.getroot()
print(root.tag, [c.tag for c in root][:5])Related files
- xmlJUnit XML — All Tests PassingA clean green run: six passing cases, zero failures, errors and skips. The baseline a CI gate should treat as success, and the control case for any dashboard that colours a build from the failure count.

- xmlJUnit XML — Console Output in CDATACaptured stdout and stderr wrapped in CDATA, where the stdout text itself looks like XML markup. A parser must treat the CDATA content as opaque characters; one that re-parses it finds a <report> element that does not exist.

- xmlJUnit XML — Empty Suite (Zero Tests)A structurally valid report containing a suite with no <testcase> children at all — what a runner writes when a filter matched nothing. Aggregators that divide by the test count to compute a pass rate hit a zero denominator here.

- xmlJUnit XML — Error and Failure DistinguishedOne <failure> (an assertion that did not hold) and one <error> (an exception the test never expected), side by side. Parsers that collapse the two lose the distinction between a broken assertion and a broken environment.

- xmlJUnit XML — Every Test SkippedA suite in which every case was skipped, so tests equals skipped and nothing actually ran. A gate that reads only the failure count calls this green; one that checks executed>0 catches it.

- xmlJUnit XML — Mixed Pass, Fail, Error and SkipThe full canonical run flattened into a single suite: nine passes, one failure, one error and one skip. This is the same twelve cases the eight dialect files carry, so totals can be compared straight across.

Generated by generation/testing.py. Free for any use, no attribution required — license.