public class TestProtocolSpecificMeta extends TestProtocolSpecific {
@Before
public void testStartServer() throws Exception {
Responder responder = new SpecificResponder(Simple.class, new TestImpl());
responder.addRPCPlugin(new RPCMetaTestPlugin("key1"));
responder.addRPCPlugin(new RPCMetaTestPlugin("key2"));
server = new SocketServer(responder, new InetSocketAddress(0));
client = new SocketTransceiver(new InetSocketAddress(server.getPort()));
SpecificRequestor req = new SpecificRequestor(Simple.class, client);
req.addRPCPlugin(new RPCMetaTestPlugin("key1"));