116
117
// GetRemoteFrontendClient mocks base method.
118
>
func (m *MockBean) GetRemoteFrontendClient(arg0 string) (grpc.ClientConnInterface, workflowservice.WorkflowServiceClient, error) {
client_bean_mock.go
119
>
m.ctrl.T.Helper()
120
>
ret := m.ctrl.Call(m, "GetRemoteFrontendClient", arg0)
121
>
ret0, _ := ret[0].(grpc.ClientConnInterface)
122
>
ret1, _ := ret[1].(workflowservice.WorkflowServiceClient)
123
>
ret2, _ := ret[2].(error)
124
>
return ret0, ret1, ret2
125
>
}
126
127
// GetRemoteFrontendClient indicates an expected call of GetRemoteFrontendClient.