(final InvocationOnMock invocation)
| 197 | private void stubbing(final PutRequest put){ |
| 198 | doAnswer(new Answer<Object>(){ |
| 199 | public Object answer(final InvocationOnMock invocation){ |
| 200 | put.getDeferred().callback(null); |
| 201 | sendPut = true; |
| 202 | return null; |
| 203 | } |
| 204 | }).when(regionclient).sendRpc(put); |
| 205 | |
| 206 | doAnswer(new Answer<Object>(){ |
nothing calls this directly
no test coverage detected