| 32 | struct SSHClient : public testing::Test |
| 33 | { |
| 34 | SSHClient() |
| 35 | { |
| 36 | connect.returnValue(SSH_OK); |
| 37 | is_connected.returnValue(true); |
| 38 | open_session.returnValue(SSH_OK); |
| 39 | } |
| 40 | |
| 41 | mp::SSHClient make_ssh_client() |
| 42 | { |
nothing calls this directly
no test coverage detected