List<PhotoUni_1_1_1_M> albumPhotos = album.getPhotos();
Assert.assertNotNull(albumPhotos);
Assert.assertFalse(albumPhotos.isEmpty());
Assert.assertEquals(3, albumPhotos.size());
PhotoUni_1_1_1_M photo1 = albumPhotos.get(0);
PhotoUni_1_1_1_M photo2 = albumPhotos.get(0);
PhotoUni_1_1_1_M photo3 = albumPhotos.get(0);
Assert.assertNotNull(photo1);
Assert.assertTrue(photo1.getPhotoId().startsWith("photo_"));
Assert.assertNotNull(photo2);
Assert.assertTrue(photo2.getPhotoId().startsWith("photo_"));
Assert.assertNotNull(photo3);
Assert.assertTrue(photo3.getPhotoId().startsWith("photo_"));
}