()
| 471 | } |
| 472 | |
| 473 | @Test |
| 474 | public void getBoolFalseEmpty() throws Exception { |
| 475 | final Config config = new Config(); |
| 476 | config.overrideConfig("asynchbase.bool", ""); |
| 477 | assertFalse(config.getBoolean("asynchbase.bool")); |
| 478 | } |
| 479 | |
| 480 | @Test(expected = NullPointerException.class) |
| 481 | public void getBoolFalseNull() throws Exception { |
nothing calls this directly
no test coverage detected