| 152 | RpcMgr rpc_mgr_; |
| 153 | |
| 154 | virtual void SetUp() { |
| 155 | FLAGS_rpc_use_unix_domain_socket = GetParam(); |
| 156 | IpAddr ip; |
| 157 | ASSERT_OK(HostnameToIpAddr(FLAGS_hostname, &ip)); |
| 158 | krpc_address_ = MakeNetworkAddressPB( |
| 159 | ip, FindUnusedEphemeralPort(), rpc_mgr_.GetUdsAddressUniqueId()); |
| 160 | exec_env_.reset(new ExecEnv()); |
| 161 | ASSERT_OK(rpc_mgr_.Init(krpc_address_)); |
| 162 | } |
| 163 | |
| 164 | virtual void TearDown() { |
| 165 | rpc_mgr_.Shutdown(); |
nothing calls this directly
no test coverage detected