Examples of Likes


Examples of com.restfb.types.Post.Likes

    for (Post post : postPage) {
      Comments cs = post.getComments();
      if (null != cs && !cs.getData().isEmpty()) {
        Assert.assertTrue(cs.getTotalCount() > 0);
      }
      Likes ls = post.getLikes();
      if (null != ls && !ls.getData().isEmpty()) {
        Assert.assertTrue(ls.getCount() > 0);
      }
    }
    assertEquals(25, postPage.size());
  }
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.