Examples of Bank21Home


Examples of org.jboss.ejb3.core.test.ejbthree1581.Bank21Home

   }
  
   @Test
   public void testCreation() throws Exception
   {
      Bank21Home home = lookup("BankBean21/localHome", Bank21Home.class);
      Bank21 bean = home.create();
      String actual = bean.getActivated();
      assertEquals("_CREATED", actual);
   }
View Full Code Here

Examples of org.jboss.ejb3.core.test.ejbthree1581.Bank21Home

   }
  
   @Test
   public void testInjection() throws Exception
   {
      Bank21Home home = lookup("BankBean21/localHome", Bank21Home.class);
      Bank21 bean = home.create();
      boolean injected = bean.hasSessionContext();
      assertTrue(injected);
   }
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.