*/
public class FieldTestCase extends AbstractProxyTest
{
public void testField() throws Exception
{
SimpleBean bean = new SimpleBean();
Simple simple = (Simple) assertCreateProxy(bean, Simple.class);
SimpleInterceptor.invoked = null;
simple.doSomething();
assertTrue(bean.invoked);
Method invoked = SimpleInterceptor.invoked;