()
| 436 | } |
| 437 | |
| 438 | @Test |
| 439 | public void getBoolYesCaseInsensitive() throws Exception { |
| 440 | final Config config = new Config(); |
| 441 | config.overrideConfig("asynchbase.bool", "YeS"); |
| 442 | assertTrue(config.getBoolean("asynchbase.bool")); |
| 443 | } |
| 444 | |
| 445 | @Test |
| 446 | public void getBoolFalse() throws Exception { |
nothing calls this directly
no test coverage detected