mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-07 08:34:15 +01:00
6ed93d4b82
* Add clarifications in comments * #191: Rename Service to Endpoint
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")
|
|
}
|
|
}
|