()
| 150 | } |
| 151 | |
| 152 | @Test (expected = NullPointerException.class) |
| 153 | public void exceptionCaughtNullChannel() throws Exception { |
| 154 | final RegionClient rclient = new RegionClient(hbase_client); |
| 155 | final ExceptionEvent event = new DefaultExceptionEvent(null, |
| 156 | new RuntimeException("Boo!")); |
| 157 | rclient.exceptionCaught(null, event); |
| 158 | } |
| 159 | |
| 160 | @Test (expected = NullPointerException.class) |
| 161 | public void exceptionCaughtNullException() throws Exception { |
nothing calls this directly
no test coverage detected