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