REPO-2495 / ALF-21892 - Missing Workflow Message Labels

- added missing workflow messages
    - fixed testMultiInstanceListenersCalled Junit to look for Workflow message

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@137705 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Andrei Forascu
2017-06-20 10:36:00 +00:00
parent 82037ee4b6
commit 63158ba8b2
2 changed files with 27 additions and 3 deletions

View File

@@ -331,7 +331,12 @@ public class ActivitiWorkflowServiceIntegrationTest extends AbstractWorkflowServ
personManager.setUser(USER2);
List<WorkflowTask> tasks = workflowService.getAssignedTasks(USER2, WorkflowTaskState.IN_PROGRESS);
assertEquals(1, tasks.size());
assertEquals("This is the description", tasks.get(0).getDescription());
//Assert task description
assertEquals("Documents for review and approval", tasks.get(0).getDescription());
//Assert workflow link name
assertEquals("This is the description", tasks.get(0).getProperties().get(WorkflowModel.PROP_DESCRIPTION));
}
/**