185
186
// DeleteExecution mocks base method.
187
>
func (m *MockHistoryServiceClient) DeleteExecution(ctx context.Context, in *historyservice.DeleteExecutionRequest, opts ...grpc.CallOption) (*historyservice.DeleteExecutionResponse, error) {
service_grpc.pb.mock.go
188
>
m.ctrl.T.Helper()
189
>
varargs := []any{ctx, in}
190
>
for _, a := range opts {
191
varargs = append(varargs, a)
192
}
194
>
ret0, _ := ret[0].(*historyservice.DeleteExecutionResponse)
195
>
ret1, _ := ret[1].(error)
196
>
return ret0, ret1
197
}
198
199
// DeleteExecution indicates an expected call of DeleteExecution.
200
>
func (mr *MockHistoryServiceClientMockRecorder) DeleteExecution(ctx, in any, opts ...any) *gomock.Call {
service_grpc.pb.mock.go
201
>
mr.mock.ctrl.T.Helper()
202
>
varargs := append([]any{ctx, in}, opts...)
203
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteExecution", reflect.TypeOf((*MockHistoryServiceClient)(nil).DeleteExecution), varargs...)
204
>
}
205
206
// DeleteWorkflowExecution mocks base method.