()
| 705 | } |
| 706 | |
| 707 | @Test |
| 708 | public void setSerializer() throws Exception { |
| 709 | HttpQuery.initializeSerializerMaps(null); |
| 710 | HttpQuery query = NettyMocks.getQuery(tsdb, "/aggregators"); |
| 711 | query.setSerializer(); |
| 712 | assertEquals(HttpJsonSerializer.class.getCanonicalName(), |
| 713 | query.serializer().getClass().getCanonicalName()); |
| 714 | } |
| 715 | |
| 716 | @Test |
| 717 | public void setFormatterQS() throws Exception { |
nothing calls this directly
no test coverage detected