()
| 530 | } |
| 531 | |
| 532 | @Test |
| 533 | public void getAPIMethodPut() { |
| 534 | final Channel channelMock = NettyMocks.fakeChannel(); |
| 535 | final HttpRequest req = new DefaultHttpRequest(HttpVersion.HTTP_1_1, |
| 536 | HttpMethod.PUT, "/"); |
| 537 | HttpQuery query = new HttpQuery(tsdb, req, channelMock); |
| 538 | assertEquals(HttpMethod.PUT, query.getAPIMethod()); |
| 539 | } |
| 540 | |
| 541 | @Test |
| 542 | public void getAPIMethodDelete() { |
nothing calls this directly
no test coverage detected