(t *testing.T)
| 38 | } |
| 39 | |
| 40 | func TestHTTPErrorResponseWithEmptyContentType(t *testing.T) { |
| 41 | testHTTPErrorResponse(t, http.MethodPost, "", "", http.StatusUnsupportedMediaType) |
| 42 | } |
| 43 | |
| 44 | func TestHTTPErrorResponseWithValidRequest(t *testing.T) { |
| 45 | testHTTPErrorResponse(t, http.MethodPost, contentType, "", 0) |
nothing calls this directly
no test coverage detected