Add BenchmarkConvertGroupAndServiceToKey

This commit is contained in:
TwinProduction
2021-07-18 17:29:08 -04:00
committed by Chris
parent b88ae5fcf6
commit 7cf1750f86
+11
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")
}
}