2
0
mirror of https://github.com/status-im/consul.git synced 2025-01-14 07:44:50 +00:00
2021-12-09 13:14:06 -08:00

12 lines
139 B
Go

package version
import (
"testing"
)
func BenchmarkGetHumanVersion(b *testing.B) {
for i := 0; i < b.N; i++ {
GetHumanVersion()
}
}