()
| 215 | } |
| 216 | |
| 217 | @Test(expected = NumberFormatException.class) |
| 218 | public void getShortNull() throws Exception { |
| 219 | final Config config = new Config(); |
| 220 | config.overrideConfig("asynchbase.null", null); |
| 221 | config.getShort("asynchbase.null"); |
| 222 | } |
| 223 | |
| 224 | @Test(expected = NumberFormatException.class) |
| 225 | public void getShortDoesNotExist() throws Exception { |
nothing calls this directly
no test coverage detected