forked from kitproj/junit2html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
junit.xml
25 lines (25 loc) · 1.66 KB
/
junit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="UTF-8"?>
<testsuites>
<testsuite tests="4" failures="2" time="0.129" name="github.com/alexec/junit2html/example">
<properties>
<property name="go.version" value="go1.18.1"></property>
</properties>
<testcase classname="example" name="TestPassing" time="0.000"></testcase>
<testcase classname="example" name="TestFailing" time="0.000">
<failure message="Failed" type=""> example_test.go:10: this test failed</failure>
</testcase>
<testcase classname="example" name="TestSkipped" time="0.000">
<skipped message=" example_test.go:14: this test is skipped"></skipped>
</testcase>
<testcase classname="example" name="TestPanic" time="0.000">
<failure message="Failed" type="">panic: kaboom!
/usr/local/Cellar/go/1.18.1/libexec/src/testing/testing.go:1389 +0x24e
/usr/local/Cellar/go/1.18.1/libexec/src/testing/testing.go:1392 +0x39f
/usr/local/Cellar/go/1.18.1/libexec/src/runtime/panic.go:838 +0x207
/Users/acollins8/go/src/github.com/alexec/junit2html/example/example.go:10
/Users/acollins8/go/src/github.com/alexec/junit2html/example/example_test.go:18 +0x31
/usr/local/Cellar/go/1.18.1/libexec/src/testing/testing.go:1439 +0x102
/usr/local/Cellar/go/1.18.1/libexec/src/testing/testing.go:1486 +0x35f</failure>
</testcase>
</testsuite>
<testsuite tests="1" failures="0" time="0.000" name="github.com/alexec/junit2html/example/coverage">
<properties>
<property name="go.version" value="go1.18.1"></property>
<property name="coverage.statements.pct" value="50.0"></property>
</properties>
<testcase classname="coverage" name="TestCoverage" time="0.000"></testcase>
</testsuite>
</testsuites>