| 25 | void MockClientConnector::SetResponse(const std::string &response) { this->response = response; } |
| 26 | |
| 27 | void MockClientConnector::SendRPCMessage(const string &message, string &result) { |
| 28 | request = message; |
| 29 | result = this->response; |
| 30 | } |
no outgoing calls
no test coverage detected