(t *testing.T, recorder *httptest.ResponseRecorder, dest any)
| 677 | } |
| 678 | |
| 679 | func decodeJSONResponse(t *testing.T, recorder *httptest.ResponseRecorder, dest any) { |
| 680 | t.Helper() |
| 681 | testutil.DecodeJSONResponse(t, recorder, dest) |
| 682 | } |
| 683 | |
| 684 | func mustJSONBody(t *testing.T, value any) []byte { |
| 685 | t.Helper() |
no test coverage detected