(b *testing.B)
| 19 | import "testing" |
| 20 | |
| 21 | func BenchmarkPickServer(b *testing.B) { |
| 22 | // at least two to avoid 0 and 1 special cases: |
| 23 | benchPickServer(b, "127.0.0.1:1234", "127.0.0.1:1235") |
| 24 | } |
| 25 | |
| 26 | func BenchmarkPickServer_Single(b *testing.B) { |
| 27 | benchPickServer(b, "127.0.0.1:1234") |
nothing calls this directly
no test coverage detected
searching dependent graphs…