mirror of
https://github.com/TwiN/gatus.git
synced 2025-02-12 08:20:05 +01:00
12 lines
185 B
Go
12 lines
185 B
Go
package util
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func BenchmarkConvertGroupAndEndpointNameToKey(b *testing.B) {
|
|
for n := 0; n < b.N; n++ {
|
|
ConvertGroupAndEndpointNameToKey("group", "name")
|
|
}
|
|
}
|