From 0c57c726ce70cb8886ae2c459ff46fb29df822d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Sun, 6 Mar 2022 14:41:02 +0000 Subject: [PATCH] junit: Add documentation to the junit package --- pkg/junit/junit.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkg/junit/junit.go b/pkg/junit/junit.go index 87fb732..e17d93d 100644 --- a/pkg/junit/junit.go +++ b/pkg/junit/junit.go @@ -54,10 +54,12 @@ type Testsuite struct { SystemErr *Output `xml:"system-err,omitempty"` } +// AddProperty adds a property with the given name and value to this Testsuite. func (t *Testsuite) AddProperty(name, value string) { t.Properties = append(t.Properties, Property{Name: name, Value: value}) } +// AddTestcase adds Testcase tc to this Testsuite. func (t *Testsuite) AddTestcase(tc Testcase) { t.Testcases = append(t.Testcases, tc) t.Tests += 1 @@ -75,6 +77,7 @@ func (t *Testsuite) AddTestcase(tc Testcase) { } } +// SetTimestamp sets the timestamp in this Testsuite. func (ts *Testsuite) SetTimestamp(t time.Time) { ts.Timestamp = t.Format(time.RFC3339) }