junit: Correctly count skipped tests in junit Testsuite

Fixes #116
This commit is contained in:
Joël Stemmer 2022-02-24 21:55:05 +00:00
parent dde9ef5310
commit 014828bef4
3 changed files with 8 additions and 4 deletions

View File

@ -69,6 +69,10 @@ func (t *Testsuite) AddTestcase(tc Testcase) {
if tc.Failure != nil { if tc.Failure != nil {
t.Failures += 1 t.Failures += 1
} }
if tc.Skipped != nil {
t.Skipped += 1
}
} }
func (ts *Testsuite) SetTimestamp(t time.Time) { func (ts *Testsuite) SetTimestamp(t time.Time) {

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<testsuites tests="2"> <testsuites tests="2" skipped="1">
<testsuite tests="2" failures="0" errors="0" time="0.150" name="package/name" hostname="hostname" timestamp="2022-01-01T00:00:00Z"> <testsuite tests="2" failures="0" errors="0" skipped="1" time="0.150" name="package/name" hostname="hostname" timestamp="2022-01-01T00:00:00Z">
<properties> <properties>
<property name="go.version" value="1.0"></property> <property name="go.version" value="1.0"></property>
</properties> </properties>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<testsuites tests="18" failures="3"> <testsuites tests="18" failures="3" skipped="2">
<testsuite tests="18" failures="3" errors="0" skipped="0" time="0.050" name="package/name" hostname="hostname" timestamp="2022-01-01T00:00:00Z"> <testsuite tests="18" failures="3" errors="0" skipped="2" time="0.050" name="package/name" hostname="hostname" timestamp="2022-01-01T00:00:00Z">
<properties> <properties>
<property name="go.version" value="1.0"></property> <property name="go.version" value="1.0"></property>
</properties> </properties>