public void testGetMovieReviewsBySubjectId_4args() throws Exception {
System.out.println("getMovieReviewsBySubjectId");
long subjectId = 3338851;
int startIndex = 0;
int maxResult = 10;
ReviewOrderBy orderBy = ReviewOrderBy.Score;
DoubanReviewService instance = new DoubanReviewService();
DoubanReviewFeedObj result = instance.getMovieReviewsBySubjectId(subjectId, startIndex, maxResult, orderBy);
for (DoubanReviewEntryObj review : result.getReviews()) {
System.out.println("review title : " + review.getTitle());
}