()
| 478 | } |
| 479 | |
| 480 | @Test(expected = NullPointerException.class) |
| 481 | public void getBoolFalseNull() throws Exception { |
| 482 | final Config config = new Config(); |
| 483 | config.overrideConfig("asynchbase.null", null); |
| 484 | config.getBoolean("asynchbase.null"); |
| 485 | } |
| 486 | |
| 487 | @Test |
| 488 | public void getBoolFalseDoesNotExist() throws Exception { |
nothing calls this directly
no test coverage detected