(block func())
| 20 | } |
| 21 | |
| 22 | func (oc *StdoutOutputCapturer) CaptureOutput(block func()) []string { |
| 23 | return io_helpers.CaptureOutput(block) |
| 24 | } |
| 25 | |
| 26 | func (oc *StdoutOutputCapturer) CaptureOutputAndStatus(block func() int) ([]string, int) { |
| 27 | var status int |
nothing calls this directly
no test coverage detected