mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00
gtr: Add Timestamp field to Package
When using the ReportBuilder, the Timestamp will by default be set to the current local time.
This commit is contained in:
parent
c78e04707f
commit
3190f85fe3
@ -26,17 +26,19 @@ type ReportBuilder struct {
|
||||
coverage float64 // coverage percentage
|
||||
|
||||
// default values
|
||||
PackageName string
|
||||
PackageName string
|
||||
TimestampFunc func() time.Time
|
||||
}
|
||||
|
||||
// NewReportBuilder creates a new ReportBuilder.
|
||||
func NewReportBuilder() *ReportBuilder {
|
||||
return &ReportBuilder{
|
||||
tests: make(map[int]Test),
|
||||
benchmarks: make(map[int]Benchmark),
|
||||
buildErrors: make(map[int]Error),
|
||||
runErrors: make(map[int]Error),
|
||||
nextId: 1,
|
||||
tests: make(map[int]Test),
|
||||
benchmarks: make(map[int]Benchmark),
|
||||
buildErrors: make(map[int]Error),
|
||||
runErrors: make(map[int]Error),
|
||||
nextId: 1,
|
||||
TimestampFunc: time.Now,
|
||||
}
|
||||
}
|
||||
|
||||
@ -136,6 +138,10 @@ func (b *ReportBuilder) CreatePackage(name, result string, duration time.Duratio
|
||||
Duration: duration,
|
||||
}
|
||||
|
||||
if b.TimestampFunc != nil {
|
||||
pkg.Timestamp = b.TimestampFunc()
|
||||
}
|
||||
|
||||
// Build errors are treated somewhat differently. Rather than having a
|
||||
// single package with all build errors collected so far, we only care
|
||||
// about the build errors for this particular package.
|
||||
|
@ -57,6 +57,7 @@ func (r *Report) IsSuccessful() bool {
|
||||
// Package contains build, test and/or benchmark results for a single package.
|
||||
type Package struct {
|
||||
Name string
|
||||
Timestamp time.Time
|
||||
Duration time.Duration
|
||||
Coverage float64
|
||||
Output []string
|
||||
|
Loading…
x
Reference in New Issue
Block a user