245
246
// DescribeHistoryHost mocks base method.
247
>
func (m *MockHistoryServiceClient) DescribeHistoryHost(ctx context.Context, in *historyservice.DescribeHistoryHostRequest, opts ...grpc.CallOption) (*historyservice.DescribeHistoryHostResponse, error) {
service_grpc.pb.mock.go
248
>
m.ctrl.T.Helper()
249
>
varargs := []any{ctx, in}
250
>
for _, a := range opts {
251
varargs = append(varargs, a)
252
}
254
>
ret0, _ := ret[0].(*historyservice.DescribeHistoryHostResponse)
255
>
ret1, _ := ret[1].(error)
256
>
return ret0, ret1
257
}
258
259
// DescribeHistoryHost indicates an expected call of DescribeHistoryHost.
260
>
func (mr *MockHistoryServiceClientMockRecorder) DescribeHistoryHost(ctx, in any, opts ...any) *gomock.Call {
service_grpc.pb.mock.go
261
>
mr.mock.ctrl.T.Helper()
262
>
varargs := append([]any{ctx, in}, opts...)
263
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DescribeHistoryHost", reflect.TypeOf((*MockHistoryServiceClient)(nil).DescribeHistoryHost), varargs...)
264
>
}
265
266
// DescribeMutableState mocks base method.