()
| 284 | } |
| 285 | |
| 286 | @Test |
| 287 | public void explodeAPIPathRoot() { |
| 288 | final HttpQuery query = NettyMocks.getQuery(tsdb, |
| 289 | "/api"); |
| 290 | final String[] path = query.explodeAPIPath(); |
| 291 | assertNotNull(path); |
| 292 | assertTrue(path[0].isEmpty()); |
| 293 | } |
| 294 | |
| 295 | @Test |
| 296 | public void explodeAPIPathRootVersion() { |
nothing calls this directly
no test coverage detected