(t *testing.T)
| 28 | } |
| 29 | |
| 30 | func TestHTTPErrorResponseWithPut(t *testing.T) { |
| 31 | testHTTPErrorResponse(t, http.MethodPut, contentType, "", http.StatusMethodNotAllowed) |
| 32 | } |
| 33 | |
| 34 | func TestHTTPErrorResponseWithMaxContentLength(t *testing.T) { |
| 35 | body := make([]rune, maxRequestContentLength+1) |
nothing calls this directly
no test coverage detected