()
| 243 | } |
| 244 | |
| 245 | @Test |
| 246 | public void getLongNegative() throws Exception { |
| 247 | final Config config = new Config(); |
| 248 | config.overrideConfig("asynchbase.long", Long.toString(Long.MIN_VALUE)); |
| 249 | assertEquals(Long.MIN_VALUE, |
| 250 | config.getLong("asynchbase.long")); |
| 251 | } |
| 252 | |
| 253 | @Test(expected = NumberFormatException.class) |
| 254 | public void getLongNull() throws Exception { |
nothing calls this directly
no test coverage detected