assertFalse(userTO.getMembershipMap().containsKey(3L));
RoleService roleService2 = clientFactory.create("rossini", ADMIN_PWD).getService(RoleService.class);
try {
roleService2.readSelf(3L);
fail();
} catch (SyncopeClientException e) {
assertEquals(ClientExceptionType.UnauthorizedRole, e.getType());
}