}
@Test(expectedExceptions = CommunicationException.class)
public void testRmi_FindEvent_Exception() { // 返回异常结果
CommunicationRegistry.regist(AppEventType.find, service);
AppFindEvent event = new AppFindEvent();
event.setName("rmiEvent-Not-Found");
client.call("127.0.0.1:2088", event);// 同步调用
}