Test put with multiple column qualifier, values and row lock @throws Exception
()
| 148 | * @throws Exception |
| 149 | */ |
| 150 | @Test |
| 151 | public void putWithColumnAndLock() throws Exception { |
| 152 | final PutRequest put = new PutRequest(TABLE, KEY, FAMILY, QUALIFIERS, VALUES, |
| 153 | TIMESTAMP_LONG, LOCK); |
| 154 | stubbing(put); |
| 155 | client.put(put); |
| 156 | Mockito.verify(client).sendRpcToRegion(put); |
| 157 | Mockito.verify(regionclient).sendRpc(put); |
| 158 | assertTrue(sendPut); |
| 159 | assertEquals(1, num_puts.get()); |
| 160 | } |
| 161 | |
| 162 | /** |
| 163 | * Test put with strings instead of bytes. |
nothing calls this directly
no test coverage detected