Test delete that deletes with multiple qualifiers and time @throws Exception
()
| 175 | * @throws Exception |
| 176 | */ |
| 177 | @Test |
| 178 | public void deleteWithColumnAndTime() throws Exception { |
| 179 | final DeleteRequest delete = new DeleteRequest(TABLE, KEY, FAMILY, |
| 180 | QUALIFIERS, TIMESTAMP_LONG); |
| 181 | stubbing(delete); |
| 182 | client.delete(delete); |
| 183 | Mockito.verify(client).sendRpcToRegion(delete); |
| 184 | Mockito.verify(regionclient).sendRpc(delete); |
| 185 | assertTrue(sendDelete); |
| 186 | assertEquals(1, num_deletes.get()); |
| 187 | } |
| 188 | |
| 189 | /** |
| 190 | * Test delete that deletes with taking a row lock |
nothing calls this directly
no test coverage detected