127
128
// GetNamespaceInfo mocks base method.
129
>
func (m *MockExecutableTask) GetNamespaceInfo(ctx context.Context, namespaceID, businessID string) (string, bool, error) {
executable_task_mock.go
130
>
m.ctrl.T.Helper()
131
>
ret := m.ctrl.Call(m, "GetNamespaceInfo", ctx, namespaceID, businessID)
132
>
ret0, _ := ret[0].(string)
133
>
ret1, _ := ret[1].(bool)
134
>
ret2, _ := ret[2].(error)
135
>
return ret0, ret1, ret2
136
>
}
137
138
// GetNamespaceInfo indicates an expected call of GetNamespaceInfo.
139
>
func (mr *MockExecutableTaskMockRecorder) GetNamespaceInfo(ctx, namespaceID, businessID any) *gomock.Call {
executable_task_mock.go
140
>
mr.mock.ctrl.T.Helper()
141
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetNamespaceInfo", reflect.TypeOf((*MockExecutableTask)(nil).GetNamespaceInfo), ctx, namespaceID, businessID)
142
>
}
143
144
// GetPriority mocks base method.
146
>
m.ctrl.T.Helper()
147
>
ret := m.ctrl.Call(m, "GetPriority")
148
>
ret0, _ := ret[0].(enums.TaskPriority)
149
>
return ret0
150
>
}
151
152
// GetPriority indicates an expected call of GetPriority.