83
84
// NewLocalFrontendClientWithTimeout mocks base method.
85
>
func (m *MockFactory) NewLocalFrontendClientWithTimeout(timeout, longPollTimeout time.Duration) (grpc.ClientConnInterface, workflowservice.WorkflowServiceClient, error) {
client_factory_mock.go
86
>
m.ctrl.T.Helper()
87
>
ret := m.ctrl.Call(m, "NewLocalFrontendClientWithTimeout", timeout, longPollTimeout)
88
>
ret0, _ := ret[0].(grpc.ClientConnInterface)
89
>
ret1, _ := ret[1].(workflowservice.WorkflowServiceClient)
90
>
ret2, _ := ret[2].(error)
91
>
return ret0, ret1, ret2
92
>
}
93
94
// NewLocalFrontendClientWithTimeout indicates an expected call of NewLocalFrontendClientWithTimeout.
95
>
func (mr *MockFactoryMockRecorder) NewLocalFrontendClientWithTimeout(timeout, longPollTimeout any) *gomock.Call {
client_factory_mock.go
96
>
mr.mock.ctrl.T.Helper()
97
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "NewLocalFrontendClientWithTimeout", reflect.TypeOf((*MockFactory)(nil).NewLocalFrontendClientWithTimeout), timeout, longPollTimeout)
98
>
}
99
100
// NewMatchingClientWithTimeout mocks base method.