Examples of SoccerFacade


Examples of org.jboss.test.ejb3.ejbthree7376.SoccerFacade

   public void testJPA() throws Exception
   {
     getLog().info("testJPA start");
     InitialContext ctx = this.getInitialContext();
     SoccerFacade stats = (SoccerFacade) ctx.lookup("ejb3/ejbthree7376/SoccerFacade");
     getLog().info("testJPA about to add player");
     stats.addPlayer(0,"Heather Mitts","Boston Breakers", 0); // 2009 season
     getLog().info("testJPA player added.  About to look up player");
     Player p = stats.getPlayer(0);
     assertNotNull("player is null" , p);
     assertEquals(p.getName(), "Heather Mitts");
     assertEquals(p.getTeam(), "Boston Breakers");
     getLog().info("testJPA end");
   }
View Full Code Here

Examples of org.jboss.test.ejb3.ejbthree7376.SoccerFacade

   public void testJPABeanValidation() throws Exception
   {
     getLog().info("testJPABeanValidation start");
     InitialContext ctx = this.getInitialContext();
     SoccerFacade stats = (SoccerFacade) ctx.lookup("ejb3/ejbthree7376/SoccerFacade");
     try {
       stats.addPlayer(1, "Christine Lily","Boston Breakers", 9999); // should be invalid number of goals
       fail("failed to throw ConstraintViolationException");
     }
     catch(ConstraintViolationException expected)
     {
       // expected path
View Full Code Here

Examples of org.jboss.test.ejb3.ejbthree7376.SoccerFacade

  public void testJPAReadLock() throws Exception
  {
     getLog().info("testJPA start");
     InitialContext ctx = this.getInitialContext();
     SoccerFacade stats = (SoccerFacade) ctx.lookup("ejb3/ejbthree7376/SoccerFacade");
     getLog().info("testJPA about to add player");
     stats.addPlayer(2,"Fabiana","Boston Breakers", 5); // 2009 season
     assertNotNull("player is null", stats.getPlayer(2));
     getLog().info("testJPA player added.  About to look up player");
     Player p = stats.getPlayerReadLock(2);
     assertNotNull("player is null" , p);
     assertEquals(p.getName(), "Fabiana");
     assertEquals(p.getTeam(), "Boston Breakers");
     getLog().info("testJPA end");
  }
View Full Code Here

Examples of org.jboss.test.ejb3.ejbthree7376.SoccerFacade

  public void testJPAOptimisticLock() throws Exception
  {
     getLog().info("testJPA start");
     InitialContext ctx = this.getInitialContext();
     SoccerFacade stats = (SoccerFacade) ctx.lookup("ejb3/ejbthree7376/SoccerFacade");
     getLog().info("testJPA about to add player");
     stats.addPlayer(3,"Kelly Smith","Boston Breakers", 10); // 2009 season
     assertNotNull("player is null", stats.getPlayer(3));
     getLog().info("testJPA player added.  About to look up player");
     Player p = stats.getPlayerOptimisticLock(3);
     assertNotNull("player is null" , p);
     assertEquals(p.getName(), "Kelly Smith");
     assertEquals(p.getTeam(), "Boston Breakers");
     getLog().info("testJPA end");
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.