| 218 | func (nopCloser) Close() error { return nil } |
| 219 | |
| 220 | type fakeHandler struct { |
| 221 | invoked bool |
| 222 | fn func(context.Context, Request) Response |
| 223 | } |
| 224 | |
| 225 | func (h *fakeHandler) Handle(ctx context.Context, req Request) Response { |
| 226 | h.invoked = true |
nothing calls this directly
no outgoing calls
no test coverage detected