| 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())); |
| 170 | ARROW_ASSIGN_OR_RAISE(client_, FlightClient::Connect(location)); |
| 171 | return Status::OK(); |
| 172 | } |
| 173 | void DataTest::CheckDoGet( |
| 174 | const FlightDescriptor& descr, const RecordBatchVector& expected_batches, |
| 175 | std::function<void(const std::vector<FlightEndpoint>&)> check_endpoints) { |
nothing calls this directly
no test coverage detected