public void check_2_1_comments_likes_count() {
Connection<Post> con =
new Connection<Post>(new DefaultFacebookClient(), jsonFromClasspath("v2_1/feed-got"), Post.class);
List<Post> postPage = con.getData();
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);
}