()
| 228 | } |
| 229 | |
| 230 | @Test(expected = NumberFormatException.class) |
| 231 | public void getShortNFE() throws Exception { |
| 232 | final Config config = new Config(); |
| 233 | config.overrideConfig("asynchbase.short", |
| 234 | "this can't be parsed to short"); |
| 235 | config.getShort("asynchbase.short"); |
| 236 | } |
| 237 | |
| 238 | @Test |
| 239 | public void getLong() throws Exception { |
nothing calls this directly
no test coverage detected