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