mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -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"`
|
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())
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user