Test a delete that deletes based on family @throws Exception
()
| 98 | * @throws Exception |
| 99 | */ |
| 100 | @Test |
| 101 | public void deleteWithFamily() throws Exception { |
| 102 | final DeleteRequest delete = new DeleteRequest(TABLE, KEY, FAMILY); |
| 103 | stubbing(delete); |
| 104 | client.delete(delete); |
| 105 | Mockito.verify(client).sendRpcToRegion(delete); |
| 106 | Mockito.verify(regionclient).sendRpc(delete); |
| 107 | assertTrue(sendDelete); |
| 108 | assertEquals(1, num_deletes.get()); |
| 109 | } |
| 110 | |
| 111 | /** |
| 112 | * Test delete that deletes based on family and time |
nothing calls this directly
no test coverage detected