*/
public void testGetAllNotesFromUser_String() throws Exception {
System.out.println("getAllNotesFromUser");
String userId = "xxxx";
DoubanNoteService instance = new DoubanNoteService();
DoubanNoteFeedObj result = instance.getAllNotesFromUser(userId);
assertTrue(result.getEntries().size() > 0);
result = instance.getAllNotesFromUser("xxx");
assertTrue(result.getEntries() == null || result.getEntries().isEmpty());
}