System.out.println("searchUserProfile");
String keyword = "douban";
Integer startIndex = 0;
Integer maxResultCount = 2;
DoubanUserService instance = new DoubanUserService();
DoubanUserFeedObj result = instance.searchUserProfile(keyword, startIndex, maxResultCount);
//System.out.println("size : " + result.getUsers().size());
assertTrue(result.getUsers().size() == 3); // This is the problem of their API, no my problem
}