assertEquals(21, ia.intValue());
}
public void testExpectedValues2() throws Exception
{
MBeanServerConnection server = getServer();
ObjectName testerName = new ObjectName("jboss.aop:name=ScopedTester2");
Integer iv = (Integer)server.getAttribute(testerName, "ExpectedInterceptorValue");
Integer ia = (Integer)server.getAttribute(testerName, "ExpectedAspectValue");
assertEquals(12, iv.intValue());
assertEquals(22, ia.intValue());
}