Package org.jboss.test.proxyfactory.support

Examples of org.jboss.test.proxyfactory.support.SimpleBean


*/
public class ProxyCacheTestCase extends AbstractProxyTest
{
   public void testCache() throws Exception
   {
      SimpleBean bean = new SimpleBean();
      assertCreateProxy(bean, Simple.class);
      assertCreateProxy(bean, new Class[] { Tagging.class }, Tagging.class);
   }
View Full Code Here


*/
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;
View Full Code Here

TOP

Related Classes of org.jboss.test.proxyfactory.support.SimpleBean

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.