assertEquals(2, executionQuery.count());
assertEquals(1, taskQuery.count());
assertEquals(2, jobQuery.count());
// execute non interrupting boundary timer job
managementService.executeJob(jobQuery.orderByJobDuedate().asc().list().get(0).getId());
// after non interrupting boundary timer job execution
assertEquals(1, jobQuery.count());
assertEquals(1, taskQuery.count());
assertEquals(2, executionQuery.count());