()
| 62 | private static final byte[] VALUE = new byte[] { 42 }; |
| 63 | |
| 64 | @Before |
| 65 | public void beforeLocal() throws Exception { |
| 66 | when(hbase_client.getDefaultRpcTimeout()).thenReturn(60000); |
| 67 | PowerMockito.mockStatic(Channels.class); |
| 68 | timer.stop(); |
| 69 | } |
| 70 | |
| 71 | @Test (expected = NullPointerException.class) |
| 72 | public void nullRpc() throws Exception { |
nothing calls this directly
no test coverage detected