(final InvocationOnMock invocation)
| 335 | private void stubbing(final DeleteRequest delete){ |
| 336 | doAnswer(new Answer<Object>(){ |
| 337 | public Object answer(final InvocationOnMock invocation){ |
| 338 | delete.getDeferred().callback(null); |
| 339 | sendDelete = true; |
| 340 | return null; |
| 341 | } |
| 342 | }).when(regionclient).sendRpc(delete); |
| 343 | |
| 344 | doAnswer(new Answer<Object>(){ |
nothing calls this directly
no test coverage detected