mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00
gtr: Remove unused findBenchmark function
This commit is contained in:
parent
0c57c726ce
commit
c8de8e11aa
@ -253,21 +253,6 @@ func (b *ReportBuilder) findTest(name string) int {
|
|||||||
return -1
|
return -1
|
||||||
}
|
}
|
||||||
|
|
||||||
// findBenchmark returns the id of the most recently created benchmark with the
|
|
||||||
// given name, or -1 if no such benchmark exists.
|
|
||||||
func (b *ReportBuilder) findBenchmark(name string) int {
|
|
||||||
// check if this benchmark was lastId
|
|
||||||
if bm, ok := b.benchmarks[b.lastId]; ok && bm.Name == name {
|
|
||||||
return b.lastId
|
|
||||||
}
|
|
||||||
for id := len(b.benchmarks); id >= 0; id-- {
|
|
||||||
if b.benchmarks[id].Name == name {
|
|
||||||
return id
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return -1
|
|
||||||
}
|
|
||||||
|
|
||||||
// containsFailingTest return true if the current list of tests contains at
|
// containsFailingTest return true if the current list of tests contains at
|
||||||
// least one failing test or an unknown result.
|
// least one failing test or an unknown result.
|
||||||
func (b *ReportBuilder) containsFailingTest() bool {
|
func (b *ReportBuilder) containsFailingTest() bool {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user