test(BpmnTreeWalker): add sequence flow parsing test

This commit is contained in:
Nico Rehwaldt 2014-03-14 17:51:36 +01:00
parent f3f95154fd
commit 514f51a031
1 changed files with 19 additions and 0 deletions

View File

@ -155,6 +155,25 @@ describe('BpmnTreeWalker', function() {
expectWalkOrder('collaboration-message-flows.bpmn', expectedOrder, done);
});
it('collaboration / sequence flows', function(done) {
// given
var expectedOrder = [
{ id : 'Participant_2', parent : undefined },
{ id : 'Lane_1', parent : 'Participant_2' },
{ id : 'Lane_2', parent : 'Lane_1' },
{ id : 'EndEvent_1', parent : 'Lane_2' },
{ id : 'Lane_3', parent : 'Lane_1' },
{ id : 'Task_1', parent : 'Lane_3' },
{ id : 'Lane_4', parent : 'Participant_2' },
{ id : 'ExclusiveGateway_1', parent : 'Lane_4' },
{ id : 'SequenceFlow_1', parent : undefined },
{ id : 'SequenceFlow_2', parent : undefined }
];
expectWalkOrder('collaboration-sequence-flows.bpmn', expectedOrder, done);
});
it('collaboration / data items', function(done) {
// given