}
@Override
protected void updatePhotographer()
{
PhotographerUni_M_1_M_1 p1 = (PhotographerUni_M_1_M_1) pickr.getPhotographer(PhotographerUni_M_1_M_1.class, 1);
assertPhotographer(p1, 1);
p1.setPhotographerName("Amresh2");
pickr.mergePhotographer(p1);
PhotographerUni_M_1_M_1 p1Modified = (PhotographerUni_M_1_M_1) pickr.getPhotographer(
PhotographerUni_M_1_M_1.class, 1);
assertModifiedPhotographer(p1Modified, 1);
PhotographerUni_M_1_M_1 p2 = (PhotographerUni_M_1_M_1) pickr.getPhotographer(PhotographerUni_M_1_M_1.class, 2);
assertPhotographer(p2, 2);
p2.setPhotographerName("Vivek2");
pickr.mergePhotographer(p2);
PhotographerUni_M_1_M_1 p2Modified = (PhotographerUni_M_1_M_1) pickr.getPhotographer(
PhotographerUni_M_1_M_1.class, 2);
assertModifiedPhotographer(p2Modified, 2);
PhotographerUni_M_1_M_1 p3 = (PhotographerUni_M_1_M_1) pickr.getPhotographer(PhotographerUni_M_1_M_1.class, 3);
assertPhotographer(p3, 3);
p3.setPhotographerName("Kuldeep2");
pickr.mergePhotographer(p3);
PhotographerUni_M_1_M_1 p3Modified = (PhotographerUni_M_1_M_1) pickr.getPhotographer(
PhotographerUni_M_1_M_1.class, 3);
assertModifiedPhotographer(p3Modified, 3);
PhotographerUni_M_1_M_1 p4 = (PhotographerUni_M_1_M_1) pickr.getPhotographer(PhotographerUni_M_1_M_1.class, 4);
assertPhotographer(p4, 4);
p4.setPhotographerName("VivekS2");
pickr.mergePhotographer(p4);
PhotographerUni_M_1_M_1 p4Modified = (PhotographerUni_M_1_M_1) pickr.getPhotographer(
PhotographerUni_M_1_M_1.class, 4);
assertModifiedPhotographer(p4Modified, 4);
}