public void issueSYNCOPE48() {
// Parent role, able to create users with role 1
RoleTO parentRole = new RoleTO();
parentRole.setName("parentAdminRole" + getUUIDString());
parentRole.addEntitlement("USER_CREATE");
parentRole.addEntitlement("ROLE_1");
parentRole.setParent(1L);
Response response = roleService.create(parentRole);
parentRole = getObject(response, RoleTO.class, roleService);
assertNotNull(parentRole);