(b *testing.B)
| 438 | } |
| 439 | |
| 440 | func BenchmarkGithub(b *testing.B) { |
| 441 | router := New() |
| 442 | githubConfigRouter(router) |
| 443 | runRequest(b, router, http.MethodGet, "/legacy/issues/search/:owner/:repository/:state/:keyword") |
| 444 | } |
| 445 | |
| 446 | func BenchmarkParallelGithub(b *testing.B) { |
| 447 | DefaultWriter = os.Stdout |
nothing calls this directly
no test coverage detected