|
| MOCK_METHOD (Options, options,(),(override)) |
|
| MOCK_METHOD (StatusOr< google::pubsub::v1::Schema >, CreateSchema,(google::pubsub::v1::CreateSchemaRequest const &request),(override)) |
|
| MOCK_METHOD (StatusOr< google::pubsub::v1::Schema >, GetSchema,(google::pubsub::v1::GetSchemaRequest const &request),(override)) |
|
| MOCK_METHOD (StreamRange< google::pubsub::v1::Schema >, ListSchemas,(google::pubsub::v1::ListSchemasRequest request),(override)) |
|
| MOCK_METHOD (StreamRange< google::pubsub::v1::Schema >, ListSchemaRevisions,(google::pubsub::v1::ListSchemaRevisionsRequest request),(override)) |
|
| MOCK_METHOD (StatusOr< google::pubsub::v1::Schema >, CommitSchema,(google::pubsub::v1::CommitSchemaRequest const &request),(override)) |
|
| MOCK_METHOD (StatusOr< google::pubsub::v1::Schema >, RollbackSchema,(google::pubsub::v1::RollbackSchemaRequest const &request),(override)) |
|
| MOCK_METHOD (StatusOr< google::pubsub::v1::Schema >, DeleteSchemaRevision,(google::pubsub::v1::DeleteSchemaRevisionRequest const &request),(override)) |
|
| MOCK_METHOD (Status, DeleteSchema,(google::pubsub::v1::DeleteSchemaRequest const &request),(override)) |
|
| MOCK_METHOD (StatusOr< google::pubsub::v1::ValidateSchemaResponse >, ValidateSchema,(google::pubsub::v1::ValidateSchemaRequest const &request),(override)) |
|
| MOCK_METHOD (StatusOr< google::pubsub::v1::ValidateMessageResponse >, ValidateMessage,(google::pubsub::v1::ValidateMessageRequest const &request),(override)) |
|
virtual Options | options () |
|
virtual StatusOr< google::pubsub::v1::Schema > | CreateSchema (google::pubsub::v1::CreateSchemaRequest const &request) |
|
virtual StatusOr< google::pubsub::v1::Schema > | GetSchema (google::pubsub::v1::GetSchemaRequest const &request) |
|
virtual StreamRange< google::pubsub::v1::Schema > | ListSchemas (google::pubsub::v1::ListSchemasRequest request) |
|
virtual StreamRange< google::pubsub::v1::Schema > | ListSchemaRevisions (google::pubsub::v1::ListSchemaRevisionsRequest request) |
|
virtual StatusOr< google::pubsub::v1::Schema > | CommitSchema (google::pubsub::v1::CommitSchemaRequest const &request) |
|
virtual StatusOr< google::pubsub::v1::Schema > | RollbackSchema (google::pubsub::v1::RollbackSchemaRequest const &request) |
|
virtual StatusOr< google::pubsub::v1::Schema > | DeleteSchemaRevision (google::pubsub::v1::DeleteSchemaRevisionRequest const &request) |
|
virtual Status | DeleteSchema (google::pubsub::v1::DeleteSchemaRequest const &request) |
|
virtual StatusOr< google::pubsub::v1::ValidateSchemaResponse > | ValidateSchema (google::pubsub::v1::ValidateSchemaRequest const &request) |
|
virtual StatusOr< google::pubsub::v1::ValidateMessageResponse > | ValidateMessage (google::pubsub::v1::ValidateMessageRequest const &request) |
|
A class to mock SchemaServiceConnection
.
Application developers may want to test their code with simulated responses, including errors, from an object of type SchemaServiceClient
. To do so, construct an object of type SchemaServiceClient
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
.