mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 13:08:07 -05:00
gtr: Refactor ReportBuilder flush
This commit is contained in:
parent
52a5393fd3
commit
b1b88456c1
@ -38,8 +38,10 @@ func (b *ReportBuilder) newId() int {
|
||||
}
|
||||
|
||||
func (b *ReportBuilder) flush() {
|
||||
if len(b.tests) > 0 {
|
||||
b.CreatePackage(b.packageName, 0)
|
||||
// Create package in case we have tests or benchmarks that didn't get a
|
||||
// summary.
|
||||
if len(b.tests) > 0 || len(b.benchmarks) > 0 {
|
||||
b.CreatePackage(b.packageName, 0, "")
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user