Examples of MyStateless21


Examples of org.jboss.ejb3.core.test.ejbthree1512.MyStateless21

   protected abstract String getEjbName();
  
   protected MyStateless21 getRemoteView() throws Exception
   {
      MyStateless21Home home = lookup(getEjbName() + "/home", MyStateless21Home.class);
      MyStateless21 bean = home.create();
      return bean;
   }
View Full Code Here

Examples of org.jboss.ejb3.core.test.ejbthree1512.MyStateless21

   }
  
   @Test
   public void testCreate() throws Exception
   {
      MyStateless21 bean = getRemoteView();
      assertNotNull(bean);
   }
View Full Code Here

Examples of org.jboss.ejb3.core.test.ejbthree1512.MyStateless21

   }
  
   @Test
   public void testInvocation() throws Exception
   {
      MyStateless21 bean = getRemoteView();
      String now = new Date().toString();
      String actual = bean.sayHi(now);
      assertEquals("Hi " + now, actual);
   }
View Full Code Here

Examples of org.jboss.ejb3.core.test.ejbthree1512.MyStateless21

   }
  
   @Test
   public void testGetHandle() throws Exception
   {
      MyStateless21 bean = getRemoteView();
      Handle handle = bean.getHandle();
      assertNotNull(handle);
   }
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.