OutputStub implements a simple utils.Runnable
| 22 | |
| 23 | // OutputStub implements a simple utils.Runnable |
| 24 | type OutputStub struct { |
| 25 | Out []byte |
| 26 | Error error |
| 27 | } |
| 28 | |
| 29 | func (s OutputStub) Output() ([]byte, error) { |
| 30 | if s.Error != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected