xUnit XML results¶
Learn more about exporting your test results into a xml file here.
Example file¶
Download our example file here: example-xunit-report.xml
Assemblies¶
Assemblies will be read as a report with one or more containers(s).
timestamp
stored as dateassembly
we iterate over the array and define each assembly within as a container
Assembly¶
An Assembly will be read as a container with one or more result(s).
name
stored as titleconfig_file
stored as title and added to descriptionerrors
stored as xunit_errorstest
we iterate over the array and define each test within as a result
Collection¶
A Collection will be read as a result based on a Test or an Error.
Test¶
name
stored as titletype
stored as title ifname
is absentmethod
stored as exception_nametime
stored as durationresult
stored as statusreason
stored as exception_backtracetraits
stored as json_data
Error¶
name
stored as titletype
stored as title ifname
is absent and stored as exception_namefailure.message
stored as descriptionfailure.exception-type
stored as exception_descriptionfailure.stack-trace
stored as exception_backtracebroken
stored as status