()
| 103 | } |
| 104 | |
| 105 | @Test |
| 106 | public void loadPlugins() throws Exception { |
| 107 | List<DummyPlugin> plugins = PluginLoader.loadPlugins( |
| 108 | DummyPlugin.class); |
| 109 | assertNotNull(plugins); |
| 110 | assertEquals(2, plugins.size()); |
| 111 | } |
| 112 | |
| 113 | @Test |
| 114 | public void loadHttpRpcPlugin() throws Exception { |
nothing calls this directly
no test coverage detected