01-31-2014 05:33 PM
02-04-2014 02:52 AM
// Task should not yet be assigned to kermit
List<Task> tasks = taskService
.createTaskQuery()
.taskAssignee(KERMIT)
.list();
assertTrue(tasks.isEmpty());
// The task should be visible in the candidate task list
tasks = taskService.createTaskQuery().taskCandidateUser(KERMIT).list();
assertEquals(1, tasks.size());
Task task = tasks.get(0);
assertEquals("Pay out expenses", task.getName());
07-10-2014 03:25 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.