Test delete that deletes with multiple qualifiers @throws Exception
()
| 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 |
nothing calls this directly
no test coverage detected