()
| 143 | } |
| 144 | |
| 145 | @Test |
| 146 | public void getIntWithSpaces() throws Exception { |
| 147 | final Config config = new Config(false); |
| 148 | config.overrideConfig("tsd.int", |
| 149 | " " + Integer.toString(Integer.MAX_VALUE) + " "); |
| 150 | assertEquals(Integer.MAX_VALUE, |
| 151 | config.getInt("tsd.int")); |
| 152 | } |
| 153 | |
| 154 | @Test |
| 155 | public void getIntNegative() throws Exception { |
nothing calls this directly
no test coverage detected