JBoss Community

Re: jbpm4.4 timer trigerring problem

created by Michael Wohlfart in jBPM - View the full discussion

I think the job executor is not booted automatically if you extend JbpmTestCase for implementing your tests,

you might want to manually run the jobs:

 

List<Job> job = managementService.createJobQuery()
      .processInstanceId(processInstance.getId())
      .list();

managementService.executeJob(job.get(0).getId())

Reply to this message by going to Community

Start a new discussion in jBPM at Community