(t *testing.T, engine http.Handler, method, path string, body []byte)
| 499 | } |
| 500 | |
| 501 | func performRequest(t *testing.T, engine http.Handler, method, path string, body []byte) *httptest.ResponseRecorder { |
| 502 | t.Helper() |
| 503 | return testutil.PerformRequest(t, engine, method, path, body) |
| 504 | } |
| 505 | |
| 506 | func decodeJSONResponse(t *testing.T, recorder *httptest.ResponseRecorder, dest any) { |
| 507 | t.Helper() |
no test coverage detected