| 152 | } // namespace |
| 153 | |
| 154 | void DataTest::SetUpTest() { |
| 155 | server_ = TestFlightServer::Make(); |
| 156 | |
| 157 | ASSERT_OK_AND_ASSIGN(auto location, Location::ForScheme(transport(), "127.0.0.1", 0)); |
| 158 | FlightServerOptions options(location); |
| 159 | ASSERT_OK(server_->Init(options)); |
| 160 | |
| 161 | ASSERT_OK(ConnectClient()); |
| 162 | } |
| 163 | void DataTest::TearDownTest() { |
| 164 | ASSERT_OK(client_->Close()); |
| 165 | ASSERT_OK(server_->Shutdown()); |
nothing calls this directly
no test coverage detected