(t *testing.T, data hooks.Request)
| 327 | } |
| 328 | |
| 329 | func marshalHookData(t *testing.T, data hooks.Request) string { |
| 330 | t.Helper() |
| 331 | b, err := json.Marshal(data) |
| 332 | assert.NilError(t, err) |
| 333 | return string(b) |
| 334 | } |
| 335 | |
| 336 | func unmarshalResponse(t *testing.T, data []byte) hooks.Response { |
| 337 | t.Helper() |
no outgoing calls
no test coverage detected