Assert.assertTrue(groupForumResponse.getForums().size() > 0);
}
@Test
public void testGetForumById() throws Exception {
GroupForumResponse groupForumResponse = API.getForums().getForums();
Forum forum = groupForumResponse.getForums().get(0);
IndividualForumResponse individualForumResponse = API.getForums().getForumById(forum.getId());
Assert.assertEquals(individualForumResponse.getForum().getDescription(), forum.getDescription());
Assert.assertEquals(individualForumResponse.getForum().getId(), forum.getId());
}