assertTrue(userTO.getResources().isEmpty());
// 2. try to update by adding a resource, but no password: must fail
UserMod userMod = new UserMod();
userMod.setId(userTO.getId());
userMod.addResourceToBeAdded("ws-target-resource-2");
SyncopeClientException sce = null;
try {
userService.update(userMod.getId(), userMod);
} catch (SyncopeClientCompositeErrorException scce) {