mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00
parser/gotest: Remove benchmark specific methods from reportBuilder
This commit is contained in:
parent
9d434fa4b4
commit
50c1179050
@ -63,11 +63,11 @@ func (b *reportBuilder) ProcessEvent(ev Event) {
|
|||||||
case "end_test":
|
case "end_test":
|
||||||
b.EndTest(ev.Name, ev.Result, ev.Duration, ev.Indent)
|
b.EndTest(ev.Name, ev.Result, ev.Duration, ev.Indent)
|
||||||
case "run_benchmark":
|
case "run_benchmark":
|
||||||
b.CreateBenchmark(ev.Name)
|
b.CreateTest(ev.Name)
|
||||||
case "benchmark":
|
case "benchmark":
|
||||||
b.BenchmarkResult(ev.Name, ev.Iterations, ev.NsPerOp, ev.MBPerSec, ev.BytesPerOp, ev.AllocsPerOp)
|
b.BenchmarkResult(ev.Name, ev.Iterations, ev.NsPerOp, ev.MBPerSec, ev.BytesPerOp, ev.AllocsPerOp)
|
||||||
case "end_benchmark":
|
case "end_benchmark":
|
||||||
b.EndBenchmark(ev.Name, ev.Result)
|
b.EndTest(ev.Name, ev.Result, 0, 0)
|
||||||
case "status":
|
case "status":
|
||||||
b.End()
|
b.End()
|
||||||
case "summary":
|
case "summary":
|
||||||
@ -157,14 +157,6 @@ func (b *reportBuilder) End() {
|
|||||||
b.lastID = 0
|
b.lastID = 0
|
||||||
}
|
}
|
||||||
|
|
||||||
// CreateBenchmark adds a benchmark with the given name to the report, and
|
|
||||||
// marks it as active. If more than one benchmark exists with this name, the
|
|
||||||
// most recently created benchmark will be updated. If no benchmark exists with
|
|
||||||
// this name, a new benchmark is created.
|
|
||||||
func (b *reportBuilder) CreateBenchmark(name string) {
|
|
||||||
b.CreateTest(name)
|
|
||||||
}
|
|
||||||
|
|
||||||
// BenchmarkResult updates an existing or adds a new test with the given
|
// BenchmarkResult updates an existing or adds a new test with the given
|
||||||
// results and marks it as active. If an existing test with this name exists
|
// results and marks it as active. If an existing test with this name exists
|
||||||
// but without result, then that one is updated. Otherwise a new one is added
|
// but without result, then that one is updated. Otherwise a new one is added
|
||||||
@ -184,14 +176,6 @@ func (b *reportBuilder) BenchmarkResult(name string, iterations int64, nsPerOp,
|
|||||||
b.tests[id] = test
|
b.tests[id] = test
|
||||||
}
|
}
|
||||||
|
|
||||||
// EndBenchmark finds the benchmark with the given name and sets the result. If
|
|
||||||
// more than one benchmark exists with this name, the most recently created
|
|
||||||
// benchmark will be used. If no benchmark exists with this name, a new
|
|
||||||
// benchmark is created.
|
|
||||||
func (b *reportBuilder) EndBenchmark(name, result string) {
|
|
||||||
b.EndTest(name, result, 0, 0)
|
|
||||||
}
|
|
||||||
|
|
||||||
// CreateBuildError creates a new build error and marks it as active.
|
// CreateBuildError creates a new build error and marks it as active.
|
||||||
func (b *reportBuilder) CreateBuildError(packageName string) {
|
func (b *reportBuilder) CreateBuildError(packageName string) {
|
||||||
id := b.newID()
|
id := b.newID()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user