mirror of
https://github.com/status-im/consul.git
synced 2025-01-10 22:06:20 +00:00
b64674623e
* copyright headers for agent folder
15 lines
209 B
Go
15 lines
209 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package version
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func BenchmarkGetHumanVersion(b *testing.B) {
|
|
for i := 0; i < b.N; i++ {
|
|
GetHumanVersion()
|
|
}
|
|
}
|