public async Task update_with_message_that_uses_saga_identity_attributed_property() { await send(new IntStart { Id = stateId, Name = "Croaker" }); var message = new IntDoThree { TheSagaId = stateId }; await send(message); var state = await LoadState(stateId); state.ThreeCompleted.ShouldBeTrue(); }
public void Handles(IntDoThree message, IntWorkflowState state) { state.ThreeCompleted = true; }