()
| 332 | } |
| 333 | |
| 334 | @Test(expected = NumberFormatException.class) |
| 335 | public void getFloatNFE() throws Exception { |
| 336 | final Config config = new Config(); |
| 337 | config.overrideConfig("asynchbase.float", "this can't be parsed to float"); |
| 338 | config.getFloat("asynchbase.float"); |
| 339 | } |
| 340 | |
| 341 | @Test |
| 342 | public void getDouble() throws Exception { |
nothing calls this directly
no test coverage detected