@Test
 public void testGetsAreNotTransactionalWithProxyFactory2DynamicProxy()
     throws NoSuchMethodException {
   this.factory.preInstantiateSingletons();
   ITestBean testBean = (ITestBean) factory.getBean("proxyFactory2DynamicProxy");
   assertTrue("testBean is a dynamic proxy", Proxy.isProxyClass(testBean.getClass()));
   doTestGetsAreNotTransactional(testBean);
 }
 @Test
 public void testGetsAreNotTransactionalWithProxyFactory1() throws NoSuchMethodException {
   ITestBean testBean = (ITestBean) factory.getBean("proxyFactory1");
   assertTrue("testBean is a dynamic proxy", Proxy.isProxyClass(testBean.getClass()));
   doTestGetsAreNotTransactional(testBean);
 }