()
| 246 | } |
| 247 | |
| 248 | @Test |
| 249 | public void explodeAPIPathNoVersion() { |
| 250 | final HttpQuery query = NettyMocks.getQuery(tsdb, |
| 251 | "/api/put?param=value¶m2=value2"); |
| 252 | final String[] path = query.explodeAPIPath(); |
| 253 | assertNotNull(path); |
| 254 | assertEquals("put", path[0]); |
| 255 | } |
| 256 | |
| 257 | @Test |
| 258 | public void explodeAPIPathExtended() { |
nothing calls this directly
no test coverage detected