}
@Ignore("albumId isn't copied to Request")
@Test
public void testAlbumCreate() throws RequestException, IOException {
Album album = new Album();
String albumId = "myNewAlbum001";
String caption = "Happy new Year!";
String description = "Photos of the new year's party.";
String thumbnailUrl = "http://thumbnailUrl";
album.setId(albumId);
album.setCaption(caption);
album.setDescription(description);
album.setThumbnailUrl(thumbnailUrl);
request = AlbumsService.createAlbum(album);
assertRequestValid(null, "albums.create", "POST");
assertRequestComponent("@me", Request.GUID);
assertRequestComponent("@self", Request.GROUP_ID);