()
| 237 | } |
| 238 | |
| 239 | @Test |
| 240 | public void explodeAPIPath() { |
| 241 | final HttpQuery query = NettyMocks.getQuery(tsdb, |
| 242 | "/api/v1/put?param=value¶m2=value2"); |
| 243 | final String[] path = query.explodeAPIPath(); |
| 244 | assertNotNull(path); |
| 245 | assertEquals("put", path[0]); |
| 246 | } |
| 247 | |
| 248 | @Test |
| 249 | public void explodeAPIPathNoVersion() { |
nothing calls this directly
no test coverage detected