junit-report 0.9.0

Create JUnit compatible XML reports.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="utf-8"?>
<testsuites>
  <testsuite id="0" name="ts1" package="testsuite/ts1" tests="4" errors="1" failures="1" hostname="localhost" timestamp="2018-04-21T12:02:00Z" time="30">
    <testcase name="test1" time="15" classname="MyClass" file="./foo.rs"/>
    <testcase name="test2" time="10">
      <failure type="assert_eq" message="What was not true"/>
    </testcase>
    <testcase name="test3" time="5">
      <error type="git error" message="Could not clone"/>
    </testcase>
    <testcase name="test4" time="0">
      <skipped/>
    </testcase>
  </testsuite>
</testsuites>