mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
d013ded88d
Co-authored-by: Evan Culver <eculver@hashicorp.com>
12 lines
139 B
Go
12 lines
139 B
Go
package version
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func BenchmarkGetHumanVersion(b *testing.B) {
|
|
for i := 0; i < b.N; i++ {
|
|
GetHumanVersion()
|
|
}
|
|
}
|