5354555657585960
@Test @Deployment public void asyncSequence1Step() { performanceTest() .step(new StartProcessInstanceStep(engine, "process")) .step(new SignalExecutionStep(engine, PROCESS_INSTANCE_ID)) .run(); }
6263646566676869
@Test @Deployment public void asyncSequence5Steps() { performanceTest() .step(new StartProcessInstanceStep(engine, "process")) .steps(5, new SignalExecutionStep(engine, PROCESS_INSTANCE_ID)) .run(); }
7172737475767778
@Test @Deployment public void asyncSequence15Steps() { performanceTest() .step(new StartProcessInstanceStep(engine, "process")) .steps(15, new SignalExecutionStep(engine, PROCESS_INSTANCE_ID)) .run(); }
@Test @Deployment public void async1Subprocess() { performanceTest() .step(new StartProcessInstanceStep(engine, "process")) .step(new SignalExecutionStep(engine, EXECUTION_ID)) .run(); }
@Test @Deployment public void async2Subprocesses() { performanceTest() .step(new StartProcessInstanceStep(engine, "process")) .step(new SignalExecutionStep(engine, EXECUTION_ID)) .run(); }
@Test @Deployment public void async3Subprocesses() { performanceTest() .step(new StartProcessInstanceStep(engine, "process")) .step(new SignalExecutionStep(engine, EXECUTION_ID)) .run(); }