go:generate counterfeiter . Process
| 189 | //go:generate counterfeiter . Process |
| 190 | |
| 191 | type Process interface { |
| 192 | ID() string |
| 193 | Wait() (int, error) |
| 194 | SetTTY(TTYSpec) error |
| 195 | Signal(Signal) error |
| 196 | } |
| 197 | |
| 198 | type Signal int |
| 199 |
no outgoing calls
no test coverage detected