コード例 #1
0
  /**
   * Test of getLatestTV method, of class TmdbTV.
   *
   * @throws com.omertron.themoviedbapi.MovieDbException
   */
  @Test
  public void testGetTVLatest() throws MovieDbException {
    LOG.info("getTVLatest");

    TVInfo result = instance.getLatestTV();
    assertTrue("Missing ID", result.getId() > 0);
    assertTrue("Missing Name", StringUtils.isNotBlank(result.getName()));
  }