Assert.assertEquals("One beach", photo.getPhotoCaption());
}
private PhotographerUni_1_1_1_1_PK populatePhotographer()
{
PhotographerUni_1_1_1_1_PK p = new PhotographerUni_1_1_1_1_PK();
p.setPhotographerId(photographerId);
p.setPhotographerName("Amresh");
AlbumUni_1_1_1_1_PK album = new AlbumUni_1_1_1_1_PK(photographerId, "album_1", "My Phuket Vacation",
"Went Phuket with friends");
PhotoUni_1_1_1_1_PK photo = new PhotoUni_1_1_1_1_PK(photographerId, "photo_1", "One beach",
"On beach with friends");
album.setPhoto(photo);
p.setAlbum(album);
return p;
}