| 12 | ) |
| 13 | |
| 14 | type fakeProcAdapter struct { |
| 15 | lastCall string |
| 16 | command string |
| 17 | dir string |
| 18 | id string |
| 19 | tail int |
| 20 | } |
| 21 | |
| 22 | func (f *fakeProcAdapter) Start(command, dir string) (string, error) { |
| 23 | f.lastCall, f.command, f.dir = "start", command, dir |
nothing calls this directly
no outgoing calls
no test coverage detected