270
271
// AddCompletedWorkflowEvent mocks base method.
272
>
func (m *MockMutableState) AddCompletedWorkflowEvent(arg0 int64, arg1 *command.CompleteWorkflowExecutionCommandAttributes, arg2 string) (*history.HistoryEvent, error) {
mutable_state_mock.go
273
>
m.ctrl.T.Helper()
274
>
ret := m.ctrl.Call(m, "AddCompletedWorkflowEvent", arg0, arg1, arg2)
275
>
ret0, _ := ret[0].(*history.HistoryEvent)
276
>
ret1, _ := ret[1].(error)
277
>
return ret0, ret1
278
>
}
279
280
// AddCompletedWorkflowEvent indicates an expected call of AddCompletedWorkflowEvent.
281
>
func (mr *MockMutableStateMockRecorder) AddCompletedWorkflowEvent(arg0, arg1, arg2 any) *gomock.Call {
mutable_state_mock.go
282
>
mr.mock.ctrl.T.Helper()
283
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AddCompletedWorkflowEvent", reflect.TypeOf((*MockMutableState)(nil).AddCompletedWorkflowEvent), arg0, arg1, arg2)
284
>
}
285
286
// AddContinueAsNewEvent mocks base method.