MCPcopy Index your code
hub / github.com/OpenTSDB/asynchbase / deleteWithColumn

Method deleteWithColumn

test/TestDeleteRequest.java:162–171  ·  view source on GitHub ↗

Test delete that deletes with multiple qualifiers @throws Exception

()

Source from the content-addressed store, hash-verified

160 * @throws Exception
161 */
162 @Test
163 public void deleteWithColumn() throws Exception {
164 final DeleteRequest delete = new DeleteRequest(TABLE, KEY, FAMILY, QUALIFIERS);
165 stubbing(delete);
166 client.delete(delete);
167 Mockito.verify(client).sendRpcToRegion(delete);
168 Mockito.verify(regionclient).sendRpc(delete);
169 assertTrue(sendDelete);
170 assertEquals(1, num_deletes.get());
171 }
172
173 /**
174 * Test delete that deletes with multiple qualifiers and time

Callers

nothing calls this directly

Calls 5

stubbingMethod · 0.95
deleteMethod · 0.80
sendRpcToRegionMethod · 0.80
sendRpcMethod · 0.80
getMethod · 0.45

Tested by

no test coverage detected