Test put request with specific timestamp @throws Exception
()
| 84 | * @throws Exception |
| 85 | */ |
| 86 | @Test |
| 87 | public void putWithTime() throws Exception { |
| 88 | final PutRequest put = new PutRequest(TABLE, KEY, FAMILY, QUALIFIER, VALUE, |
| 89 | TIMESTAMP_LONG); |
| 90 | stubbing(put); |
| 91 | client.put(put); |
| 92 | Mockito.verify(client).sendRpcToRegion(put); |
| 93 | Mockito.verify(regionclient).sendRpc(put); |
| 94 | assertTrue(sendPut); |
| 95 | assertEquals(1, num_puts.get()); |
| 96 | } |
| 97 | |
| 98 | /** |
| 99 | * Test put that have multiple column qualifiers and values |
nothing calls this directly
no test coverage detected