()
| 723 | } |
| 724 | |
| 725 | @Test |
| 726 | public void setSerializerDummyQS() throws Exception { |
| 727 | PluginLoader.loadJAR("plugin_test.jar"); |
| 728 | HttpQuery.initializeSerializerMaps(null); |
| 729 | HttpQuery query = NettyMocks.getQuery(tsdb, "/aggregators?serializer=dummy"); |
| 730 | query.setSerializer(); |
| 731 | assertEquals("net.opentsdb.tsd.DummyHttpSerializer", |
| 732 | query.serializer().getClass().getCanonicalName()); |
| 733 | } |
| 734 | |
| 735 | @Test |
| 736 | public void setSerializerCT() throws Exception { |
nothing calls this directly
no test coverage detected