()
| 347 | } |
| 348 | |
| 349 | @Test |
| 350 | public void getDoubleNegative() throws Exception { |
| 351 | final Config config = new Config(); |
| 352 | config.overrideConfig("asynchbase.double", Double.toString(Double.MIN_VALUE)); |
| 353 | assertEquals(Double.MIN_VALUE, |
| 354 | config.getDouble("asynchbase.double"), 0.000001); |
| 355 | } |
| 356 | |
| 357 | @Test |
| 358 | public void getDoubleNaN() throws Exception { |
nothing calls this directly
no test coverage detected