| 18 | } |
| 19 | |
| 20 | type runner struct { |
| 21 | bin string |
| 22 | args []string |
| 23 | writer io.Writer |
| 24 | command *exec.Cmd |
| 25 | starttime time.Time |
| 26 | } |
| 27 | |
| 28 | func NewRunner(bin string, args ...string) Runner { |
| 29 | return &runner{ |
nothing calls this directly
no outgoing calls
no test coverage detected