(final InvocationOnMock invocation)
| 63 | when(regionclient.isAlive()).thenReturn(true); |
| 64 | doAnswer(new Answer<Object>() { |
| 65 | public Object answer(final InvocationOnMock invocation) { |
| 66 | get.getDeferred().callback(row); |
| 67 | return null; |
| 68 | } |
| 69 | }).when(regionclient).sendRpc(get); |
| 70 | |
| 71 | assertSame(row, client.get(get).joinUninterruptibly()); |
nothing calls this directly
no test coverage detected