(b *testing.B)
| 611 | } |
| 612 | |
| 613 | func BenchmarkServeHTTPLargeFile(b *testing.B) { |
| 614 | test := testRequest{ |
| 615 | name: "large_file", |
| 616 | endpoint: "large_file", |
| 617 | expectedStatus: http.StatusOK, |
| 618 | expectedBody: testLargeResp, |
| 619 | } |
| 620 | |
| 621 | benchmarkServeHTTP(b, test) |
| 622 | } |
nothing calls this directly
no test coverage detected