*/
public void testGetUserInfoById() throws Exception {
System.out.println("getUserInfoById");
String userId = "xxx";
DoubanShuoService instance = new DoubanShuoService();
DoubanShuoUserObj result = instance.getUserInfoById(userId);
assertEquals(result.getScreenName(), "xxx");
}