Assert.assertNotNull(albumRev);
}
private PhotographerBi_1_1_1_1_PK populatePhotographer()
{
PhotographerBi_1_1_1_1_PK p = new PhotographerBi_1_1_1_1_PK();
p.setPhotographerId(photographerId);
p.setPhotographerName("Amresh");
AlbumBi_1_1_1_1_PK album = new AlbumBi_1_1_1_1_PK(photographerId, "album_1", "My Phuket Vacation",
"Went Phuket with friends");
PhotoBi_1_1_1_1_PK photo = new PhotoBi_1_1_1_1_PK(photographerId, "photo_1", "One beach",
"On beach with friends");
album.setPhoto(photo);
p.setAlbum(album);
return p;
}