Class<SimpleInterface> businessInterface = null;
InvocationHandler handler = new EndpointInvocationHandler(endpoint, session, businessInterface);
Object proxy = null;
Method method = Object.class.getDeclaredMethod("hashCode");
Object args[] = null;
int result = (Integer) handler.invoke(proxy, method, args);
assertEquals(createHashCode(endpoint, session, businessInterface), result);
}
@Test
public void testHashCodeWithBusinessInterface() throws Exception