long contactTypeId1 = 1;
long contactTypeId2 = 2;
String newValue2 = "new value 2";
List<UserContactContainer> contacts = new ArrayList<>(addContactsToUser(user, 1, contactTypeId1));
UserContactContainer contact1 = contacts.get(0);
contact1.setTypeId(contactTypeId2);
contact1.setValue(newValue2);
prepareContactsMocks();
UserContactType contactType = createUserContactType(contactTypeId2);
when(userContactsDao.get(contactType.getId())).thenReturn(contactType);
when(userContactsDao.isExist(anyLong())).thenReturn(true);