@Test
  public void testGetHotList() throws FlickrException {

    TagsInterface iface = flickr.getTagsInterface();
    Collection<HotlistTag> tags = iface.getHotList("day", 20);
    assertNotNull(tags);
    assertTrue(tags.size() > 1);
  }