@Test(enabled = false)
public void testGetTopics() throws Exception {
GroupTopicResponse gtr = API.getTopics().getTopics();
Assert.assertTrue(gtr.getCount().intValue() > 0);
IndividualTopicResponse itr = API.getTopics().getTopicById(gtr.getTopics().get(0).getId());
Assert.assertEquals(itr.getTopic().getId(), gtr.getTopics().get(0).getId());
GroupTopicResponse tbf = API.getTopics().getTopicsByForum(gtr.getTopics().get(0).getForumId());
Assert.assertEquals(tbf.getTopics().get(0).getForumId(), gtr.getTopics().get(0).getForumId());
GroupTopicResponse tbu = API.getTopics().getTopicsByUser(USER_ID);