90
91
// GenerateChildWorkflowTasks mocks base method.
92
>
func (m *MockTaskGenerator) GenerateChildWorkflowTasks(childInitiatedEventId int64) error {
task_generator_mock.go
93
>
m.ctrl.T.Helper()
94
>
ret := m.ctrl.Call(m, "GenerateChildWorkflowTasks", childInitiatedEventId)
95
>
ret0, _ := ret[0].(error)
96
>
return ret0
97
>
}
98
99
// GenerateChildWorkflowTasks indicates an expected call of GenerateChildWorkflowTasks.
100
>
func (mr *MockTaskGeneratorMockRecorder) GenerateChildWorkflowTasks(childInitiatedEventId any) *gomock.Call {
task_generator_mock.go
101
>
mr.mock.ctrl.T.Helper()
102
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GenerateChildWorkflowTasks", reflect.TypeOf((*MockTaskGenerator)(nil).GenerateChildWorkflowTasks), childInitiatedEventId)
103
>
}
104
105
// GenerateDelayedWorkflowTasks mocks base method.