| 67 | } |
| 68 | |
| 69 | type sshApplication struct { |
| 70 | t *testing.T |
| 71 | ctx context.Context |
| 72 | client *ssh.Client |
| 73 | done chan struct{} |
| 74 | result string |
| 75 | } |
| 76 | |
| 77 | func (s *sshApplication) Close() error { |
| 78 | return s.client.Close() |
nothing calls this directly
no outgoing calls
no test coverage detected