Camunda Platform Scenario Versions Save

Easily execute Camunda process scenarios and verify your expectations with Given/Then/When style tests.

2.0.0.alpha.2

3 years ago

2.0.0.alpha.1

3 years ago

1.1.1

3 years ago

Fixes an issue which occurs when registering multiple call activities

1.1.0

3 years ago

This releases is validated with all released versions of Camunda from 7.0.0-Final up to 7.15.0. Aside some minor improvements, like simplified support for error handling of user tasks, it brings call activity mocking. You can now write the following code:

when(scenario.waitsAtMockedCallActivity("CallActivity")).thenReturn((callActivity)` -> 
    callActivity.complete(myVariableMap);
);

Scenario.run(scenario)
    .withMockedProcess("Child")
    .startByKey("Parent")
    .execute();

verify(scenario, times(1)).hasStarted("CallActivity");
verify(scenario, times(1)).hasFinished("CallActivity");

Have fun!

1.0.0

3 years ago

Production Release 1.0.0