950
951
// CreateWorkflowExecution mocks base method.
952
>
func (m *MockExecutionStore) CreateWorkflowExecution(ctx context.Context, request *persistence.InternalCreateWorkflowExecutionRequest) (*persistence.InternalCreateWorkflowExecutionResponse, error) {
store_mock.go
953
>
m.ctrl.T.Helper()
954
>
ret := m.ctrl.Call(m, "CreateWorkflowExecution", ctx, request)
955
>
ret0, _ := ret[0].(*persistence.InternalCreateWorkflowExecutionResponse)
956
>
ret1, _ := ret[1].(error)
957
>
return ret0, ret1
958
>
}
959
960
// CreateWorkflowExecution indicates an expected call of CreateWorkflowExecution.
961
>
func (mr *MockExecutionStoreMockRecorder) CreateWorkflowExecution(ctx, request any) *gomock.Call {
store_mock.go
962
>
mr.mock.ctrl.T.Helper()
963
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateWorkflowExecution", reflect.TypeOf((*MockExecutionStore)(nil).CreateWorkflowExecution), ctx, request)
964
>
}
965
966
// DeleteCurrentWorkflowExecution mocks base method.