()
| 189 | } |
| 190 | |
| 191 | @Test(expected = NumberFormatException.class) |
| 192 | public void getIntNFE() throws Exception { |
| 193 | final Config config = new Config(); |
| 194 | config.overrideConfig("asynchbase.int", |
| 195 | "this can't be parsed to int"); |
| 196 | config.getInt("asynchbase.int"); |
| 197 | } |
| 198 | |
| 199 | @Test |
| 200 | public void getShort() throws Exception { |
nothing calls this directly
no test coverage detected