@Test
  public void testGetListUser() throws FlickrException {

    TagsInterface iface = flickr.getTagsInterface();
    Collection<Tag> tags = iface.getListUser(testProperties.getNsid());
    assertNotNull(tags);
    assertFalse(tags.isEmpty());
  }