| 99 | type CommandCallback func([]string) |
| 100 | |
| 101 | type commandStub struct { |
| 102 | pattern *regexp.Regexp |
| 103 | matched bool |
| 104 | exitStatus int |
| 105 | stdout string |
| 106 | callbacks []CommandCallback |
| 107 | } |
| 108 | |
| 109 | type errWithExitCode struct { |
| 110 | message string |
nothing calls this directly
no outgoing calls
no test coverage detected