1
0
Fork 0
mirror of https://github.com/TwiN/gatus.git synced 2024-12-14 11:58:04 +00:00

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")
}
}