}
@Test
public void testDefaultDecoderReplySymetric() throws Exception {
startNodes(2);
MessageCodec codec = new MyPOJOEncoder2();
vertices[0].eventBus().registerDefaultCodec(MyPOJO.class, codec);
vertices[1].eventBus().registerDefaultCodec(MyPOJO.class, codec);
String str = TestUtils.randomAlphaString(100);
MyPOJO pojo = new MyPOJO(str);
testReply(pojo, pojo, null, null);