(t *testing.T)
| 2318 | } |
| 2319 | |
| 2320 | func TestProxyFromEmptyContext(t *testing.T) { |
| 2321 | proxyURL, err := proxyFromContext(&http.Request{}) |
| 2322 | |
| 2323 | assert.NoError(t, err) |
| 2324 | assert.Nil(t, proxyURL) |
| 2325 | } |
| 2326 | |
| 2327 | func BenchmarkAccessLogNoFilter(b *testing.B) { benchmarkAccessLog(b, "", 200) } |
| 2328 | func BenchmarkAccessLogDisablePrint(b *testing.B) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…