{
Assert.assertNotNull(p);
Assert.assertEquals(1, p.getPhotographerId());
Assert.assertEquals("Amresh", p.getPhotographerName());
AlbumBi_1_1_1_M album = p.getAlbum();
Assert.assertNotNull(album);
Assert.assertEquals("album_1", album.getAlbumId());
Assert.assertEquals("My Phuket Vacation", album.getAlbumName());
Assert.assertEquals("Went Phuket with friends", album.getAlbumDescription());
List<PhotoBi_1_1_1_M> photos = album.getPhotos();
Assert.assertNotNull(photos);
Assert.assertFalse(photos.isEmpty());
Assert.assertEquals(3, photos.size());
PhotoBi_1_1_1_M photo1 = photos.get(0);
Assert.assertNotNull(photo1);
Assert.assertEquals(7, photo1.getPhotoId().length());
AlbumBi_1_1_1_M albumRev = photo1.getAlbum();
Assert.assertNotNull(albumRev);
}