forked from uber/cadence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clientBean_mock.go
144 lines (121 loc) · 5.37 KB
/
clientBean_mock.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
// The MIT License (MIT)
// Copyright (c) 2017-2020 Uber Technologies Inc.
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
// Code generated by MockGen. DO NOT EDIT.
// Source: clientBean.go
// Package client is a generated GoMock package.
package client
import (
reflect "reflect"
gomock "github.com/golang/mock/gomock"
admin "github.com/uber/cadence/client/admin"
frontend "github.com/uber/cadence/client/frontend"
history "github.com/uber/cadence/client/history"
matching "github.com/uber/cadence/client/matching"
)
// MockBean is a mock of Bean interface
type MockBean struct {
ctrl *gomock.Controller
recorder *MockBeanMockRecorder
}
// MockBeanMockRecorder is the mock recorder for MockBean
type MockBeanMockRecorder struct {
mock *MockBean
}
// NewMockBean creates a new mock instance
func NewMockBean(ctrl *gomock.Controller) *MockBean {
mock := &MockBean{ctrl: ctrl}
mock.recorder = &MockBeanMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use
func (m *MockBean) EXPECT() *MockBeanMockRecorder {
return m.recorder
}
// GetHistoryClient mocks base method
func (m *MockBean) GetHistoryClient() history.Client {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetHistoryClient")
ret0, _ := ret[0].(history.Client)
return ret0
}
// GetHistoryClient indicates an expected call of GetHistoryClient
func (mr *MockBeanMockRecorder) GetHistoryClient() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetHistoryClient", reflect.TypeOf((*MockBean)(nil).GetHistoryClient))
}
// GetMatchingClient mocks base method
func (m *MockBean) GetMatchingClient(domainIDToName DomainIDToNameFunc) (matching.Client, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetMatchingClient", domainIDToName)
ret0, _ := ret[0].(matching.Client)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// GetMatchingClient indicates an expected call of GetMatchingClient
func (mr *MockBeanMockRecorder) GetMatchingClient(domainIDToName interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetMatchingClient", reflect.TypeOf((*MockBean)(nil).GetMatchingClient), domainIDToName)
}
// GetFrontendClient mocks base method
func (m *MockBean) GetFrontendClient() frontend.Client {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetFrontendClient")
ret0, _ := ret[0].(frontend.Client)
return ret0
}
// GetFrontendClient indicates an expected call of GetFrontendClient
func (mr *MockBeanMockRecorder) GetFrontendClient() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetFrontendClient", reflect.TypeOf((*MockBean)(nil).GetFrontendClient))
}
// GetRemoteAdminClient mocks base method
func (m *MockBean) GetRemoteAdminClient(cluster string) admin.Client {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetRemoteAdminClient", cluster)
ret0, _ := ret[0].(admin.Client)
return ret0
}
// GetRemoteAdminClient indicates an expected call of GetRemoteAdminClient
func (mr *MockBeanMockRecorder) GetRemoteAdminClient(cluster interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetRemoteAdminClient", reflect.TypeOf((*MockBean)(nil).GetRemoteAdminClient), cluster)
}
// SetRemoteAdminClient mocks base method
func (m *MockBean) SetRemoteAdminClient(cluster string, client admin.Client) {
m.ctrl.T.Helper()
m.ctrl.Call(m, "SetRemoteAdminClient", cluster, client)
}
// SetRemoteAdminClient indicates an expected call of SetRemoteAdminClient
func (mr *MockBeanMockRecorder) SetRemoteAdminClient(cluster, client interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SetRemoteAdminClient", reflect.TypeOf((*MockBean)(nil).SetRemoteAdminClient), cluster, client)
}
// GetRemoteFrontendClient mocks base method
func (m *MockBean) GetRemoteFrontendClient(cluster string) frontend.Client {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetRemoteFrontendClient", cluster)
ret0, _ := ret[0].(frontend.Client)
return ret0
}
// GetRemoteFrontendClient indicates an expected call of GetRemoteFrontendClient
func (mr *MockBeanMockRecorder) GetRemoteFrontendClient(cluster interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetRemoteFrontendClient", reflect.TypeOf((*MockBean)(nil).GetRemoteFrontendClient), cluster)
}