use of com.google.cloud.bigtable.data.v2.models.ReadModifyWriteRow in project java-bigtable by googleapis.
the class BigtableDataClientTest method proxyReadModifyWriteRowTest.
@Test
public void proxyReadModifyWriteRowTest() {
Mockito.when(mockStub.readModifyWriteRowCallable()).thenReturn(mockReadModifyWriteRowCallable);
ReadModifyWriteRow request = ReadModifyWriteRow.create("fake-table", "some-key").append("fake-family", "fake-qualifier", "suffix");
bigtableDataClient.readModifyWriteRowAsync(request);
Mockito.verify(mockReadModifyWriteRowCallable).futureCall(request);
}
Aggregations