225
226
// AddChildWorkflowExecutionStartedEvent mocks base method.
227
>
func (m *MockMutableState) AddChildWorkflowExecutionStartedEvent(arg0 *common.WorkflowExecution, arg1 *common.WorkflowType, arg2 int64, arg3 *common.Header, arg4 *clock.VectorClock) (*history.HistoryEvent, error) {
mutable_state_mock.go
228
>
m.ctrl.T.Helper()
229
>
ret := m.ctrl.Call(m, "AddChildWorkflowExecutionStartedEvent", arg0, arg1, arg2, arg3, arg4)
230
>
ret0, _ := ret[0].(*history.HistoryEvent)
231
>
ret1, _ := ret[1].(error)
232
>
return ret0, ret1
233
>
}
234
235
// AddChildWorkflowExecutionStartedEvent indicates an expected call of AddChildWorkflowExecutionStartedEvent.