| 11 | ) |
| 12 | |
| 13 | type fakeRunner struct { |
| 14 | gotName string |
| 15 | gotArgs []string |
| 16 | code int |
| 17 | err error |
| 18 | } |
| 19 | |
| 20 | func (f *fakeRunner) Run(name string, args []string, stdout, stderr io.Writer) (int, error) { |
| 21 | f.gotName = name |
nothing calls this directly
no outgoing calls
no test coverage detected