Package org.jboss.ejb3.test.interceptors.ejbthree1215

Examples of org.jboss.ejb3.test.interceptors.ejbthree1215.Hello.sayHiTo()


     
      Class<?> interfaces[] = { Hello.class };
      Hello proxy = container.constructProxy(interfaces);
     
      String name = new Date().toString();
      String result = proxy.sayHiTo(name);
     
      assertEquals(1, GetMethodInterceptor.invocations);
      assertEquals("Hi " + name, result);
      log.info("======= Done");
   }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.