()
| 34 | type UIOutputCapturer struct{} |
| 35 | |
| 36 | func NewUIOutputCapturer() OutputCapturer { |
| 37 | return &UIOutputCapturer{} |
| 38 | } |
| 39 | |
| 40 | func (oc *UIOutputCapturer) CaptureOutput(block func()) []string { |
| 41 | bucket := new(bytes.Buffer) |
no outgoing calls
no test coverage detected