示例#1
0
  /**
   * Test of getTVPopular method, of class TmdbTV.
   *
   * @throws com.omertron.themoviedbapi.MovieDbException
   */
  @Test
  public void testGetTVPopular() throws MovieDbException {
    LOG.info("getTVPopular");
    Integer page = null;
    String language = LANGUAGE_DEFAULT;

    ResultList<TVInfo> result = instance.getTVPopular(page, language);
    TestSuite.test(result, "tv Popular");
  }