mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-01-24 16:59:46 +00:00
31 lines
1.0 KiB
Python
31 lines
1.0 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
import unittest
|
||
|
from SpiffWorkflow.bpmn.workflow import BpmnWorkflow
|
||
|
from tests.SpiffWorkflow.bpmn.BaseParallelTestCase import BaseParallelTestCase
|
||
|
|
||
|
__author__ = 'matth'
|
||
|
|
||
|
class ParallelLoopingAfterJoinTest(BaseParallelTestCase):
|
||
|
|
||
|
def setUp(self):
|
||
|
spec, subprocesses = self.load_workflow_spec(
|
||
|
'Test-Workflows/Parallel-Looping-After-Join.bpmn20.xml',
|
||
|
'Parallel Looping After Join')
|
||
|
self.workflow = BpmnWorkflow(spec, subprocesses)
|
||
|
|
||
|
def test1(self):
|
||
|
self._do_test(
|
||
|
['Go', '1', '2', '2A', '2B', '2 Done', ('Retry?', 'No'), 'Done'], save_restore=True)
|
||
|
|
||
|
def test2(self):
|
||
|
self._do_test(
|
||
|
['Go', '1', '2', '2A', '2B', '2 Done', ('Retry?', 'Yes'), 'Go',
|
||
|
'1', '2', '2A', '2B', '2 Done', ('Retry?', 'No'), 'Done'], save_restore=True)
|
||
|
|
||
|
|
||
|
def suite():
|
||
|
return unittest.TestLoader().loadTestsFromTestCase(ParallelLoopingAfterJoinTest)
|
||
|
if __name__ == '__main__':
|
||
|
unittest.TextTestRunner(verbosity=2).run(suite())
|