()
| 236 | } |
| 237 | |
| 238 | @Test |
| 239 | public void getLong() throws Exception { |
| 240 | final Config config = new Config(); |
| 241 | config.overrideConfig("asynchbase.long", Long.toString(Long.MAX_VALUE)); |
| 242 | assertEquals(Long.MAX_VALUE, config.getLong("asynchbase.long")); |
| 243 | } |
| 244 | |
| 245 | @Test |
| 246 | public void getLongNegative() throws Exception { |
nothing calls this directly
no test coverage detected