| 60 | } |
| 61 | |
| 62 | type SSHConfigManager interface { |
| 63 | RemoveInstance(hostAlias string) error |
| 64 | AddInstance(hostAlias, hostname, user string, port int) error |
| 65 | } |
| 66 | |
| 67 | type MockSSHConfigManager struct { |
| 68 | RemoveInstanceFunc func(hostAlias string) error |
nothing calls this directly
no outgoing calls
no test coverage detected