()
| 255 | } |
| 256 | |
| 257 | @Test |
| 258 | public void explodeAPIPathExtended() { |
| 259 | final HttpQuery query = NettyMocks.getQuery(tsdb, |
| 260 | "/api/v1/uri/assign"); |
| 261 | final String[] path = query.explodeAPIPath(); |
| 262 | assertNotNull(path); |
| 263 | assertEquals("uri", path[0]); |
| 264 | assertEquals("assign", path[1]); |
| 265 | } |
| 266 | |
| 267 | @Test |
| 268 | public void explodeAPIPathExtendedNoVersion() { |
nothing calls this directly
no test coverage detected