| 39 | class RpcClientTest : public ::testing::Test { |
| 40 | protected: |
| 41 | void SetUp() override { |
| 42 | EXPECT_TRUE(NewSimpleMonitor(®s_, &monitor_)); |
| 43 | |
| 44 | REGISTER_IMPL(RpcManager, MockRpcManager); |
| 45 | } |
| 46 | |
| 47 | std::shared_ptr<ServerRegister> regs_; |
| 48 | std::shared_ptr<ServerMonitor> monitor_; |
nothing calls this directly
no test coverage detected