// ----------------------------------
// create user and check virtual attribute value propagation
// ----------------------------------
UserTO userTO = getSampleTO("syncope260@apache.org");
userTO.getResources().clear();
userTO.addResource("ws-target-resource-2");
userTO = restTemplate.postForObject(BASE_URL + "user/create", userTO, UserTO.class);
assertNotNull(userTO);
assertFalse(userTO.getPropagationTOs().isEmpty());
assertEquals("ws-target-resource-2", userTO.getPropagationTOs().get(0).getResourceName());