()
| 33 | } |
| 34 | |
| 35 | func (h *recordingHandler) capturedInput() []byte { |
| 36 | v, _ := h.input.Load().([]byte) |
| 37 | return v |
| 38 | } |
| 39 | |
| 40 | // TestExecutorDispatchesToCustomHandler shows the smallest end-to-end use |
| 41 | // of the new pluggability: a custom HookType backed by an in-process Go |
no test coverage detected