示例#1
0
  /**
   * Test of getTVKeywords method, of class TmdbTV.
   *
   * @throws com.omertron.themoviedbapi.MovieDbException
   */
  @Test
  public void testGetTVKeywords() throws MovieDbException {
    LOG.info("getTVKeywords");

    for (TestID test : TV_IDS) {
      ResultList<Keyword> result = instance.getTVKeywords(test.getTmdb());
      TestSuite.test(result, "TV Keyword");
    }
  }