elguardian opened a new issue, #7042:
URL: https://github.com/apache/incubator-kie/issues/7042

   in jbpm-test module there is a bunch of test that require drools to work. 
Those test are with the old engine so they were not verified against current 
workflow engine.
   
   Those test can be identified with this structure
   
   ```
           kruntime = createKogitoProcessRuntime("BPMN2-RuleTask2.bpmn2", 
"BPMN2-RuleTask2.drl");
   
           List<String> list = new ArrayList<>();
           kruntime.getKieSession().setGlobal("list", list);
           Map<String, Object> params = new HashMap<>();
           params.put("x", "SomeString");
           KogitoProcessInstance processInstance = 
kruntime.startProcess("RuleTask",
                   params);
           assertThat(list).isEmpty();
           assertProcessInstanceFinished(processInstance, kruntime);
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to