Class MockMetadataServiceConnection (2.21.0)

A class to mock MetadataServiceConnection.

Application developers may want to test their code with simulated responses, including errors, from an object of type MetadataServiceClient. To do so, construct an object of type MetadataServiceClient 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.

Functions

virtual options()

This function is implemented using gMock's MOCK_METHOD(). Consult the gMock documentation to use this mock in your tests.

Returns
TypeDescription
Options

virtual CreateEntity(google::cloud::dataplex::v1::CreateEntityRequest const &)

This function is implemented using gMock's MOCK_METHOD(). Consult the gMock documentation to use this mock in your tests.

Parameter
NameDescription
request google::cloud::dataplex::v1::CreateEntityRequest const &
Returns
TypeDescription
StatusOr< google::cloud::dataplex::v1::Entity >

virtual UpdateEntity(google::cloud::dataplex::v1::UpdateEntityRequest const &)

This function is implemented using gMock's MOCK_METHOD(). Consult the gMock documentation to use this mock in your tests.

Parameter
NameDescription
request google::cloud::dataplex::v1::UpdateEntityRequest const &
Returns
TypeDescription
StatusOr< google::cloud::dataplex::v1::Entity >

virtual DeleteEntity(google::cloud::dataplex::v1::DeleteEntityRequest const &)

This function is implemented using gMock's MOCK_METHOD(). Consult the gMock documentation to use this mock in your tests.

Parameter
NameDescription
request google::cloud::dataplex::v1::DeleteEntityRequest const &
Returns
TypeDescription
Status

virtual GetEntity(google::cloud::dataplex::v1::GetEntityRequest const &)

This function is implemented using gMock's MOCK_METHOD(). Consult the gMock documentation to use this mock in your tests.

Parameter
NameDescription
request google::cloud::dataplex::v1::GetEntityRequest const &
Returns
TypeDescription
StatusOr< google::cloud::dataplex::v1::Entity >

virtual ListEntities(google::cloud::dataplex::v1::ListEntitiesRequest)

This function is implemented using gMock's MOCK_METHOD(). Consult the gMock documentation to use this mock in your tests.

Parameter
NameDescription
request google::cloud::dataplex::v1::ListEntitiesRequest
Returns
TypeDescription
StreamRange< google::cloud::dataplex::v1::Entity >

virtual CreatePartition(google::cloud::dataplex::v1::CreatePartitionRequest const &)

This function is implemented using gMock's MOCK_METHOD(). Consult the gMock documentation to use this mock in your tests.

Parameter
NameDescription
request google::cloud::dataplex::v1::CreatePartitionRequest const &
Returns
TypeDescription
StatusOr< google::cloud::dataplex::v1::Partition >

virtual DeletePartition(google::cloud::dataplex::v1::DeletePartitionRequest const &)

This function is implemented using gMock's MOCK_METHOD(). Consult the gMock documentation to use this mock in your tests.

Parameter
NameDescription
request google::cloud::dataplex::v1::DeletePartitionRequest const &
Returns
TypeDescription
Status

virtual GetPartition(google::cloud::dataplex::v1::GetPartitionRequest const &)

This function is implemented using gMock's MOCK_METHOD(). Consult the gMock documentation to use this mock in your tests.

Parameter
NameDescription
request google::cloud::dataplex::v1::GetPartitionRequest const &
Returns
TypeDescription
StatusOr< google::cloud::dataplex::v1::Partition >

virtual ListPartitions(google::cloud::dataplex::v1::ListPartitionsRequest)

This function is implemented using gMock's MOCK_METHOD(). Consult the gMock documentation to use this mock in your tests.

Parameter
NameDescription
request google::cloud::dataplex::v1::ListPartitionsRequest
Returns
TypeDescription
StreamRange< google::cloud::dataplex::v1::Partition >