mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00
Replace += 1 with ++
This commit is contained in:
parent
fbfb33add1
commit
ddf6b16828
@ -74,18 +74,18 @@ func (t *Testsuite) AddProperty(name, value string) {
|
|||||||
// AddTestcase adds Testcase tc to this Testsuite.
|
// AddTestcase adds Testcase tc to this Testsuite.
|
||||||
func (t *Testsuite) AddTestcase(tc Testcase) {
|
func (t *Testsuite) AddTestcase(tc Testcase) {
|
||||||
t.Testcases = append(t.Testcases, tc)
|
t.Testcases = append(t.Testcases, tc)
|
||||||
t.Tests += 1
|
t.Tests++
|
||||||
|
|
||||||
if tc.Error != nil {
|
if tc.Error != nil {
|
||||||
t.Errors += 1
|
t.Errors++
|
||||||
}
|
}
|
||||||
|
|
||||||
if tc.Failure != nil {
|
if tc.Failure != nil {
|
||||||
t.Failures += 1
|
t.Failures++
|
||||||
}
|
}
|
||||||
|
|
||||||
if tc.Skipped != nil {
|
if tc.Skipped != nil {
|
||||||
t.Skipped += 1
|
t.Skipped++
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -53,7 +53,7 @@ func newReportBuilder() *reportBuilder {
|
|||||||
func (b *reportBuilder) newID() int {
|
func (b *reportBuilder) newID() int {
|
||||||
id := b.nextID
|
id := b.nextID
|
||||||
b.lastID = id
|
b.lastID = id
|
||||||
b.nextID += 1
|
b.nextID++
|
||||||
return id
|
return id
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user