()
| 161 | } |
| 162 | |
| 163 | @Test(expected = NumberFormatException.class) |
| 164 | public void getIntNull() throws Exception { |
| 165 | final Config config = new Config(false); |
| 166 | config.overrideConfig("tsd.null", null); |
| 167 | config.getInt("tsd.null"); |
| 168 | } |
| 169 | |
| 170 | @Test(expected = NumberFormatException.class) |
| 171 | public void getIntDoesNotExist() throws Exception { |
nothing calls this directly
no test coverage detected