@Test
  public void testGetListPhoto() throws FlickrException {

    TagsInterface iface = flickr.getTagsInterface();
    Photo photo = iface.getListPhoto(testProperties.getPhotoId());
    assertNotNull(photo);
    assertEquals(testProperties.getPhotoId(), photo.getId());
    assertNotNull(photo.getTags());
    assertFalse(photo.getTags().isEmpty());
  }