public void testToStringFailsWhenNotExposed()
throws Exception
{
MBeanServer server = MBeanServerFactory.newMBeanServer();
InvocationHandlerTest test = new InvocationHandlerTest();
server.registerMBean(test, invocationHandlerTestName);
InvocationHandlerTestMBean proxy = (InvocationHandlerTestMBean) MBeanServerInvocationHandler.newProxyInstance(
server, invocationHandlerTestName, InvocationHandlerTestMBean.class, true);
try