Add BenchmarkConvertGroupAndServiceToKey

This commit is contained in:
TwinProduction 2021-07-16 21:32:24 -04:00 committed by Chris
parent b88ae5fcf6
commit 7cf1750f86

11
util/key_bench_test.go Normal file
View File

@ -0,0 +1,11 @@
package util
import (
"testing"
)
func BenchmarkConvertGroupAndServiceToKey(b *testing.B) {
for n := 0; n < b.N; n++ {
ConvertGroupAndServiceToKey("group", "service")
}
}