()
| 539 | } |
| 540 | |
| 541 | @Test |
| 542 | public void getAPIMethodDelete() { |
| 543 | final Channel channelMock = NettyMocks.fakeChannel(); |
| 544 | final HttpRequest req = new DefaultHttpRequest(HttpVersion.HTTP_1_1, |
| 545 | HttpMethod.DELETE, "/"); |
| 546 | HttpQuery query = new HttpQuery(tsdb, req, channelMock); |
| 547 | assertEquals(HttpMethod.DELETE, query.getAPIMethod()); |
| 548 | } |
| 549 | |
| 550 | @Test |
| 551 | public void getAPIMethodOverrideGet() { |
nothing calls this directly
no test coverage detected