(baseURL, maxDepth string)
| 291 | } |
| 292 | |
| 293 | func buildBatchURL(baseURL, maxDepth string) string { |
| 294 | return fmt.Sprintf("%s%s?max-depth=%s", |
| 295 | baseURL, check.BatchRoute, maxDepth) |
| 296 | } |
| 297 | |
| 298 | func TestBatchCheckGRPCHandler(t *testing.T) { |
| 299 | ctx := context.Background() |
no outgoing calls
no test coverage detected