()
| 422 | } |
| 423 | |
| 424 | @Test |
| 425 | public void getBoolTrueCaseInsensitive() throws Exception { |
| 426 | final Config config = new Config(); |
| 427 | config.overrideConfig("asynchbase.bool", "TrUe"); |
| 428 | assertTrue(config.getBoolean("asynchbase.bool")); |
| 429 | } |
| 430 | |
| 431 | @Test |
| 432 | public void getBoolYes() throws Exception { |
nothing calls this directly
no test coverage detected