()
| 174 | } |
| 175 | |
| 176 | @Test(expected = NumberFormatException.class) |
| 177 | public void getIntNFE() throws Exception { |
| 178 | final Config config = new Config(false); |
| 179 | config.overrideConfig("tsd.int", |
| 180 | "this can't be parsed to int"); |
| 181 | config.getInt("tsd.int"); |
| 182 | } |
| 183 | |
| 184 | @Test |
| 185 | public void getShort() throws Exception { |
nothing calls this directly
no test coverage detected