mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-17 14:57:09 +01:00
Add go-unit test
This commit is contained in:
parent
8079cf8926
commit
e0f4952e74
8 changed files with 184 additions and 32158 deletions
21
__tests__/fixtures/external/go/go-junit-report.xml
vendored
Normal file
21
__tests__/fixtures/external/go/go-junit-report.xml
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites tests="5" failures="2" skipped="1">
|
||||
<testsuite name="github.com/company/package1" tests="0" failures="0" errors="0" id="0" hostname="MBP.local" time="0.000" timestamp="2022-10-13T16:53:32-05:00"></testsuite>
|
||||
<testsuite name="github.com/company/package2" tests="1" failures="0" errors="0" id="8" hostname="MBP.local" time="0.482" timestamp="2022-10-13T16:53:32-05:00">
|
||||
<testcase name="TestPackage2" classname="github.com/company/package2" time="0.000"></testcase>
|
||||
</testsuite>
|
||||
<testsuite name="github.com/company/package3" tests="1" failures="1" errors="0" id="10" hostname="MBP.local" time="0.835" timestamp="2022-10-13T16:53:32-05:00">
|
||||
<testcase name="TestPackage3-1" classname="github.com/company/package3" time="0.000">
|
||||
<failure message="Failed"><![CDATA[Just error here]]></failure>
|
||||
</testcase>
|
||||
<testcase name="TestPackage3-2" classname="github.com/company/package3" time="0.160">
|
||||
<system-out><![CDATA[Just system.out here]]></system-out>
|
||||
</testcase>
|
||||
<testcase name="TestPackage3-3" classname="github.com/company/package3" time="0.000">
|
||||
<skipped message="Skipped"><![CDATA[skipped here]]></skipped>
|
||||
</testcase>
|
||||
<testcase name="TestPackage3-4" classname="github.com/company/package3" time="0.000">
|
||||
<failure message="Failed"></failure>
|
||||
</testcase>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
Loading…
Add table
Add a link
Reference in a new issue