public void test_PhotoAlbumListJaxb() throws Exception {
FacebookJaxbRestClient client = FacebookSessionTestUtils.getValidClient( FacebookJaxbRestClient.class );
Long userId = client.users_getLoggedInUser();
client.photos_getAlbums( userId );
PhotosGetAlbumsResponse albumsResponse = (PhotosGetAlbumsResponse) client.getResponsePOJO();
List<Album> albums = albumsResponse.getAlbum();
assertTrue( !albums.isEmpty() );
for ( Album album : albums ) {
assertNotNull( album.getAid() );
assertNotNull( album.getName() );
new URL( album.getLink() );