()
| 176 | } |
| 177 | |
| 178 | @Test(expected = NumberFormatException.class) |
| 179 | public void getIntNull() throws Exception { |
| 180 | final Config config = new Config(); |
| 181 | config.overrideConfig("asynchbase.null", null); |
| 182 | config.getInt("asynchbase.null"); |
| 183 | } |
| 184 | |
| 185 | @Test(expected = NumberFormatException.class) |
| 186 | public void getIntDoesNotExist() throws Exception { |
nothing calls this directly
no test coverage detected