|
| MOCK_METHOD (Options, options,(),(override)) |
|
| MOCK_METHOD (StatusOr< google::cloud::bigquery::storage::v1::ReadSession >, CreateReadSession,(google::cloud::bigquery::storage::v1::CreateReadSessionRequest const &request),(override)) |
|
| MOCK_METHOD (StreamRange< google::cloud::bigquery::storage::v1::ReadRowsResponse >, ReadRows,(google::cloud::bigquery::storage::v1::ReadRowsRequest const &request),(override)) |
|
| MOCK_METHOD (StatusOr< google::cloud::bigquery::storage::v1::SplitReadStreamResponse >, SplitReadStream,(google::cloud::bigquery::storage::v1::SplitReadStreamRequest const &request),(override)) |
|
virtual Options | options () |
|
virtual StatusOr< google::cloud::bigquery::storage::v1::ReadSession > | CreateReadSession (google::cloud::bigquery::storage::v1::CreateReadSessionRequest const &request) |
|
virtual StreamRange< google::cloud::bigquery::storage::v1::ReadRowsResponse > | ReadRows (google::cloud::bigquery::storage::v1::ReadRowsRequest const &request) |
|
virtual StatusOr< google::cloud::bigquery::storage::v1::SplitReadStreamResponse > | SplitReadStream (google::cloud::bigquery::storage::v1::SplitReadStreamRequest const &request) |
|
A class to mock BigQueryReadConnection
.
Application developers may want to test their code with simulated responses, including errors, from an object of type BigQueryReadClient
. To do so, construct an object of type BigQueryReadClient
with an instance of this class. Then use the Google Test framework functions to program the behavior of this mock.
- See also
- This example for how to test your application with GoogleTest. While the example showcases types from the BigQuery library, the underlying principles apply for any pair of
*Client
and *Connection
.