mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-04 20:50:14 -05:00
junit: Omit Testcase attributes if they're empty
This commit is contained in:
parent
88177b5692
commit
050e22e86b
@ -82,8 +82,8 @@ type Testcase struct {
|
||||
Classname string `xml:"classname,attr"`
|
||||
|
||||
// optional attributes
|
||||
Time string `xml:"time,attr"` // duration in seconds
|
||||
Status string `xml:"status,attr"`
|
||||
Time string `xml:"time,attr,omitempty"` // duration in seconds
|
||||
Status string `xml:"status,attr,omitempty"`
|
||||
|
||||
Skipped *Result `xml:"skipped,omitempty"`
|
||||
Error *Result `xml:"error,omitempty"`
|
||||
@ -110,3 +110,9 @@ type Result struct {
|
||||
func FormatDuration(d time.Duration) string {
|
||||
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())
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user