()
| 271 | } |
| 272 | |
| 273 | @Test |
| 274 | public void getFloat() throws Exception { |
| 275 | final Config config = new Config(); |
| 276 | config.overrideConfig("asynchbase.float", Float.toString(Float.MAX_VALUE)); |
| 277 | assertEquals(Float.MAX_VALUE, |
| 278 | config.getFloat("asynchbase.float"), 0.000001); |
| 279 | } |
| 280 | |
| 281 | @Test |
| 282 | public void getFloatNegative() throws Exception { |
nothing calls this directly
no test coverage detected