()
| 275 | } |
| 276 | |
| 277 | @Test |
| 278 | public void explodeAPIPathCase() { |
| 279 | final HttpQuery query = NettyMocks.getQuery(tsdb, |
| 280 | "/Api/Uri"); |
| 281 | final String[] path = query.explodeAPIPath(); |
| 282 | assertNotNull(path); |
| 283 | assertEquals("Uri", path[0]); |
| 284 | } |
| 285 | |
| 286 | @Test |
| 287 | public void explodeAPIPathRoot() { |
nothing calls this directly
no test coverage detected