use of io.camunda.zeebe.engine.state.appliers.EventAppliers in project zeebe by camunda.
the class VariableBehaviorTest method beforeEach.
@BeforeEach
void beforeEach() {
final var stateWriter = new EventApplyingStateWriter(eventWriter, new EventAppliers(zeebeState));
state = zeebeState.getVariableState();
behavior = new VariableBehavior(state, stateWriter, zeebeState.getKeyGenerator());
}
use of io.camunda.zeebe.engine.state.appliers.EventAppliers in project zeebe by zeebe-io.
the class VariableBehaviorTest method beforeEach.
@BeforeEach
void beforeEach() {
final var stateWriter = new EventApplyingStateWriter(eventWriter, new EventAppliers(zeebeState));
state = zeebeState.getVariableState();
behavior = new VariableBehavior(state, stateWriter, zeebeState.getKeyGenerator());
}
use of io.camunda.zeebe.engine.state.appliers.EventAppliers in project zeebe by camunda-cloud.
the class VariableBehaviorTest method beforeEach.
@BeforeEach
void beforeEach() {
final var stateWriter = new EventApplyingStateWriter(eventWriter, new EventAppliers(zeebeState));
state = zeebeState.getVariableState();
behavior = new VariableBehavior(state, stateWriter, zeebeState.getKeyGenerator());
}
Aggregations