| 161 | ASSERT_OK(ConnectClient()); |
| 162 | } |
| 163 | void DataTest::TearDownTest() { |
| 164 | ASSERT_OK(client_->Close()); |
| 165 | ASSERT_OK(server_->Shutdown()); |
| 166 | } |
| 167 | Status DataTest::ConnectClient() { |
| 168 | ARROW_ASSIGN_OR_RAISE(auto location, |
| 169 | Location::ForScheme(transport(), "127.0.0.1", server_->port())); |
nothing calls this directly
no test coverage detected