* @throws MovieDbException
*/
@Test
public void testGetMovieInfo() throws MovieDbException {
LOG.info("getMovieInfo");
MovieDb result = tmdb.getMovieInfo(ID_MOVIE_BLADE_RUNNER, LANGUAGE_ENGLISH, "alternative_titles,casts,images,keywords,releases,trailers,translations,similar_movies,reviews,lists");
assertEquals("Incorrect movie information", "Blade Runner", result.getOriginalTitle());
}