1502
1503
// ApplyWorkflowExecutionStartedEvent mocks base method.
1504
>
func (m *MockMutableState) ApplyWorkflowExecutionStartedEvent(arg0 *clock.VectorClock, arg1 *common.WorkflowExecution, arg2 string, arg3 *history.HistoryEvent) error {
mutable_state_mock.go
1505
>
m.ctrl.T.Helper()
1506
>
ret := m.ctrl.Call(m, "ApplyWorkflowExecutionStartedEvent", arg0, arg1, arg2, arg3)
1507
>
ret0, _ := ret[0].(error)
1508
>
return ret0
1509
>
}
1510
1511
// ApplyWorkflowExecutionStartedEvent indicates an expected call of ApplyWorkflowExecutionStartedEvent.
1512
>
func (mr *MockMutableStateMockRecorder) ApplyWorkflowExecutionStartedEvent(arg0, arg1, arg2, arg3 any) *gomock.Call {
mutable_state_mock.go
1513
>
mr.mock.ctrl.T.Helper()
1514
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ApplyWorkflowExecutionStartedEvent", reflect.TypeOf((*MockMutableState)(nil).ApplyWorkflowExecutionStartedEvent), arg0, arg1, arg2, arg3)
1515
>
}
1516
1517
// ApplyWorkflowExecutionTerminatedEvent mocks base method.