()
| 279 | } |
| 280 | |
| 281 | @Test |
| 282 | public void getFloatNegative() throws Exception { |
| 283 | final Config config = new Config(); |
| 284 | config.overrideConfig("asynchbase.float", Float.toString(Float.MIN_VALUE)); |
| 285 | assertEquals(Float.MIN_VALUE, |
| 286 | config.getFloat("asynchbase.float"), 0.000001); |
| 287 | } |
| 288 | |
| 289 | @Test |
| 290 | public void getFloatNaN() throws Exception { |
nothing calls this directly
no test coverage detected