| 69 | const std::string& TestServer::unix_sock() const { return unix_sock_; } |
| 70 | |
| 71 | FlightInfo MakeFlightInfo(const Schema& schema, const FlightDescriptor& descriptor, |
| 72 | const std::vector<FlightEndpoint>& endpoints, |
| 73 | int64_t total_records, int64_t total_bytes, bool ordered, |
| 74 | std::string app_metadata) { |
| 75 | EXPECT_OK_AND_ASSIGN(auto info, |
| 76 | FlightInfo::Make(schema, descriptor, endpoints, total_records, |
| 77 | total_bytes, ordered, std::move(app_metadata))); |
| 78 | return info; |
| 79 | } |
| 80 | |
| 81 | FlightInfo MakeFlightInfo(const FlightDescriptor& descriptor, |
| 82 | const std::vector<FlightEndpoint>& endpoints, |
no outgoing calls
no test coverage detected