()
| 319 | } |
| 320 | |
| 321 | @Test(expected = NullPointerException.class) |
| 322 | public void getFloatNull() throws Exception { |
| 323 | final Config config = new Config(); |
| 324 | config.overrideConfig("asynchbase.null", null); |
| 325 | config.getFloat("asynchbase.null"); |
| 326 | } |
| 327 | |
| 328 | @Test(expected = NullPointerException.class) |
| 329 | public void getFloatDoesNotExist() throws Exception { |
nothing calls this directly
no test coverage detected