()
| 339 | } |
| 340 | |
| 341 | @Test |
| 342 | public void getDouble() throws Exception { |
| 343 | final Config config = new Config(); |
| 344 | config.overrideConfig("asynchbase.double", Double.toString(Double.MAX_VALUE)); |
| 345 | assertEquals(Double.MAX_VALUE, |
| 346 | config.getDouble("asynchbase.double"), 0.000001); |
| 347 | } |
| 348 | |
| 349 | @Test |
| 350 | public void getDoubleNegative() throws Exception { |
nothing calls this directly
no test coverage detected