Examples of GolfEventCommentBean


Examples of net.sf.brightside.golfmaster.beans.GolfEventCommentBean

  }
 
  @Test
  public void testRetrieveByPage()
  {
    golferEventComments.save(new GolfEventCommentBean("commetn","p1",new GolferBean("mile","fdsfs","fdsfs")));
    golferEventComments.save(new GolfEventCommentBean("commetn2","p2",new GolferBean("mile","fdsfs","fdsfs")));
    Collection<GolfEventComment> coll =golferEventComments.retrieveByPage("p1");
    assertSame(false,coll.isEmpty());
    assertSame(1, coll.size());
    golferEventComments.save(new GolfEventCommentBean("commetn3","p2",new GolferBean("mile","fdsfs","fdsfs")));
    coll =golferEventComments.retrieveByPage("p2");
    assertSame(2, coll.size());
  }
View Full Code Here

Examples of net.sf.brightside.golfmaster.beans.GolfEventCommentBean

  private GolfEventComment currentGolfEventComment;
 
   
  @SetupRender
  public void createObject() {
    golfEventComment=new GolfEventCommentBean();
   
  }
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.