2023-03-28 22:48:58 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2021-12-09 21:14:06 +00:00
|
|
|
package version
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func BenchmarkGetHumanVersion(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
GetHumanVersion()
|
|
|
|
}
|
|
|
|
}
|