Class MockDataConnection (2.13.0)

Application developers may want to test their code with simulated responses, including errors from a bigtable::Table. To do so, construct a bigtable::Table with an instance of this class. Then use the Google Test framework functions to program the behavior of this mock.

See Mocking the Cloud Bigtable C++ Client with Google Mock for a complete example that mocks Table calls.

Constructors

MockDataConnection()

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 Apply(std::string const &, SingleRowMutation)

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

Parameters
NameDescription
table_name std::string const &
mut SingleRowMutation
Returns
TypeDescription
Status

virtual AsyncApply(std::string const &, SingleRowMutation)

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

Parameters
NameDescription
table_name std::string const &
mut SingleRowMutation
Returns
TypeDescription
future< Status >

virtual BulkApply(std::string const &, BulkMutation)

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

Parameters
NameDescription
table_name std::string const &
mut BulkMutation
Returns
TypeDescription
std::vector< FailedMutation >

virtual AsyncBulkApply(std::string const &, BulkMutation)

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

Parameters
NameDescription
table_name std::string const &
mut BulkMutation
Returns
TypeDescription
future< std::vector< FailedMutation > >

virtual ReadRows(std::string const &, RowSet, std::int64_t, Filter)

Prefer to use