}
@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());
}