| 41 | ) |
| 42 | |
| 43 | type fakeRemoteExecutor struct { |
| 44 | url *url.URL |
| 45 | execErr error |
| 46 | } |
| 47 | |
| 48 | func (f *fakeRemoteExecutor) Execute(url *url.URL, config *restclient.Config, stdin io.Reader, stdout, stderr io.Writer, tty bool, terminalSizeQueue remotecommand.TerminalSizeQueue) error { |
| 49 | return f.ExecuteWithContext(context.Background(), url, config, stdin, stdout, stderr, tty, terminalSizeQueue) |
nothing calls this directly
no outgoing calls
no test coverage detected