mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-22 16:03:44 +01:00
12 lines
178 B
Go
12 lines
178 B
Go
package util
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func BenchmarkConvertGroupAndServiceToKey(b *testing.B) {
|
|
for n := 0; n < b.N; n++ {
|
|
ConvertGroupAndServiceToKey("group", "service")
|
|
}
|
|
}
|