forked from ava-labs/avalanche-network-runner
-
Notifications
You must be signed in to change notification settings - Fork 1
/
client.go
205 lines (161 loc) · 4.01 KB
/
client.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
// Code generated by mockery v2.10.6. DO NOT EDIT.
package mocks
import (
api "github.com/MetalBlockchain/metal-network-runner/api"
admin "github.com/MetalBlockchain/metalgo/api/admin"
avm "github.com/MetalBlockchain/metalgo/vms/avm"
evm "github.com/MetalBlockchain/coreth/plugin/evm"
health "github.com/MetalBlockchain/metalgo/api/health"
indexer "github.com/MetalBlockchain/metalgo/indexer"
info "github.com/MetalBlockchain/metalgo/api/info"
keystore "github.com/MetalBlockchain/metalgo/api/keystore"
mock "github.com/stretchr/testify/mock"
platformvm "github.com/MetalBlockchain/metalgo/vms/platformvm"
)
// Client is an autogenerated mock type for the Client type
type Client struct {
mock.Mock
}
// AdminAPI provides a mock function with given fields:
func (_m *Client) AdminAPI() admin.Client {
ret := _m.Called()
var r0 admin.Client
if rf, ok := ret.Get(0).(func() admin.Client); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(admin.Client)
}
}
return r0
}
// CChainAPI provides a mock function with given fields:
func (_m *Client) CChainAPI() evm.Client {
ret := _m.Called()
var r0 evm.Client
if rf, ok := ret.Get(0).(func() evm.Client); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(evm.Client)
}
}
return r0
}
// CChainEthAPI provides a mock function with given fields:
func (_m *Client) CChainEthAPI() api.EthClient {
ret := _m.Called()
var r0 api.EthClient
if rf, ok := ret.Get(0).(func() api.EthClient); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(api.EthClient)
}
}
return r0
}
// CChainIndexAPI provides a mock function with given fields:
func (_m *Client) CChainIndexAPI() indexer.Client {
ret := _m.Called()
var r0 indexer.Client
if rf, ok := ret.Get(0).(func() indexer.Client); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(indexer.Client)
}
}
return r0
}
// HealthAPI provides a mock function with given fields:
func (_m *Client) HealthAPI() health.Client {
ret := _m.Called()
var r0 health.Client
if rf, ok := ret.Get(0).(func() health.Client); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(health.Client)
}
}
return r0
}
// InfoAPI provides a mock function with given fields:
func (_m *Client) InfoAPI() info.Client {
ret := _m.Called()
var r0 info.Client
if rf, ok := ret.Get(0).(func() info.Client); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(info.Client)
}
}
return r0
}
// KeystoreAPI provides a mock function with given fields:
func (_m *Client) KeystoreAPI() keystore.Client {
ret := _m.Called()
var r0 keystore.Client
if rf, ok := ret.Get(0).(func() keystore.Client); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(keystore.Client)
}
}
return r0
}
// PChainAPI provides a mock function with given fields:
func (_m *Client) PChainAPI() platformvm.Client {
ret := _m.Called()
var r0 platformvm.Client
if rf, ok := ret.Get(0).(func() platformvm.Client); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(platformvm.Client)
}
}
return r0
}
// PChainIndexAPI provides a mock function with given fields:
func (_m *Client) PChainIndexAPI() indexer.Client {
ret := _m.Called()
var r0 indexer.Client
if rf, ok := ret.Get(0).(func() indexer.Client); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(indexer.Client)
}
}
return r0
}
// XChainAPI provides a mock function with given fields:
func (_m *Client) XChainAPI() avm.Client {
ret := _m.Called()
var r0 avm.Client
if rf, ok := ret.Get(0).(func() avm.Client); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(avm.Client)
}
}
return r0
}
// XChainWalletAPI provides a mock function with given fields:
func (_m *Client) XChainWalletAPI() avm.WalletClient {
ret := _m.Called()
var r0 avm.WalletClient
if rf, ok := ret.Get(0).(func() avm.WalletClient); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(avm.WalletClient)
}
}
return r0
}