junit: Omit Testcase attributes if they're empty

This commit is contained in:
Joël Stemmer 2019-10-08 00:44:52 +01:00
parent 88177b5692
commit 050e22e86b

View File

@ -82,8 +82,8 @@ type Testcase struct {
Classname string `xml:"classname,attr"` Classname string `xml:"classname,attr"`
// optional attributes // optional attributes
Time string `xml:"time,attr"` // duration in seconds Time string `xml:"time,attr,omitempty"` // duration in seconds
Status string `xml:"status,attr"` Status string `xml:"status,attr,omitempty"`
Skipped *Result `xml:"skipped,omitempty"` Skipped *Result `xml:"skipped,omitempty"`
Error *Result `xml:"error,omitempty"` Error *Result `xml:"error,omitempty"`
@ -110,3 +110,9 @@ type Result struct {
func FormatDuration(d time.Duration) string { func FormatDuration(d time.Duration) string {
return fmt.Sprintf("%.3f", d.Seconds()) return fmt.Sprintf("%.3f", d.Seconds())
} }
// FormatBenchmarkTime returns the JUnit string representation of the given
// benchmark time.
func FormatBenchmarkTime(d time.Duration) string {
return fmt.Sprintf("%.9f", d.Seconds())
}