()
| 197 | } |
| 198 | |
| 199 | @Test |
| 200 | public void getShort() throws Exception { |
| 201 | final Config config = new Config(); |
| 202 | config.overrideConfig("asynchbase.short", |
| 203 | Short.toString(Short.MAX_VALUE)); |
| 204 | assertEquals(Short.MAX_VALUE, |
| 205 | config.getShort("asynchbase.short")); |
| 206 | } |
| 207 | |
| 208 | @Test |
| 209 | public void getShortNegative() throws Exception { |
nothing calls this directly
no test coverage detected