github.com/MetalBlockchain/metalgo@v1.11.9/message/mock_outbound_message_builder.go (about) 1 // Code generated by MockGen. DO NOT EDIT. 2 // Source: github.com/MetalBlockchain/metalgo/message (interfaces: OutboundMsgBuilder) 3 // 4 // Generated by this command: 5 // 6 // mockgen -package=message -destination=message/mock_outbound_message_builder.go github.com/MetalBlockchain/metalgo/message OutboundMsgBuilder 7 // 8 9 // Package message is a generated GoMock package. 10 package message 11 12 import ( 13 netip "net/netip" 14 reflect "reflect" 15 time "time" 16 17 ids "github.com/MetalBlockchain/metalgo/ids" 18 p2p "github.com/MetalBlockchain/metalgo/proto/pb/p2p" 19 ips "github.com/MetalBlockchain/metalgo/utils/ips" 20 gomock "go.uber.org/mock/gomock" 21 ) 22 23 // MockOutboundMsgBuilder is a mock of OutboundMsgBuilder interface. 24 type MockOutboundMsgBuilder struct { 25 ctrl *gomock.Controller 26 recorder *MockOutboundMsgBuilderMockRecorder 27 } 28 29 // MockOutboundMsgBuilderMockRecorder is the mock recorder for MockOutboundMsgBuilder. 30 type MockOutboundMsgBuilderMockRecorder struct { 31 mock *MockOutboundMsgBuilder 32 } 33 34 // NewMockOutboundMsgBuilder creates a new mock instance. 35 func NewMockOutboundMsgBuilder(ctrl *gomock.Controller) *MockOutboundMsgBuilder { 36 mock := &MockOutboundMsgBuilder{ctrl: ctrl} 37 mock.recorder = &MockOutboundMsgBuilderMockRecorder{mock} 38 return mock 39 } 40 41 // EXPECT returns an object that allows the caller to indicate expected use. 42 func (m *MockOutboundMsgBuilder) EXPECT() *MockOutboundMsgBuilderMockRecorder { 43 return m.recorder 44 } 45 46 // Accepted mocks base method. 47 func (m *MockOutboundMsgBuilder) Accepted(arg0 ids.ID, arg1 uint32, arg2 []ids.ID) (OutboundMessage, error) { 48 m.ctrl.T.Helper() 49 ret := m.ctrl.Call(m, "Accepted", arg0, arg1, arg2) 50 ret0, _ := ret[0].(OutboundMessage) 51 ret1, _ := ret[1].(error) 52 return ret0, ret1 53 } 54 55 // Accepted indicates an expected call of Accepted. 56 func (mr *MockOutboundMsgBuilderMockRecorder) Accepted(arg0, arg1, arg2 any) *gomock.Call { 57 mr.mock.ctrl.T.Helper() 58 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Accepted", reflect.TypeOf((*MockOutboundMsgBuilder)(nil).Accepted), arg0, arg1, arg2) 59 } 60 61 // AcceptedFrontier mocks base method. 62 func (m *MockOutboundMsgBuilder) AcceptedFrontier(arg0 ids.ID, arg1 uint32, arg2 ids.ID) (OutboundMessage, error) { 63 m.ctrl.T.Helper() 64 ret := m.ctrl.Call(m, "AcceptedFrontier", arg0, arg1, arg2) 65 ret0, _ := ret[0].(OutboundMessage) 66 ret1, _ := ret[1].(error) 67 return ret0, ret1 68 } 69 70 // AcceptedFrontier indicates an expected call of AcceptedFrontier. 71 func (mr *MockOutboundMsgBuilderMockRecorder) AcceptedFrontier(arg0, arg1, arg2 any) *gomock.Call { 72 mr.mock.ctrl.T.Helper() 73 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AcceptedFrontier", reflect.TypeOf((*MockOutboundMsgBuilder)(nil).AcceptedFrontier), arg0, arg1, arg2) 74 } 75 76 // AcceptedStateSummary mocks base method. 77 func (m *MockOutboundMsgBuilder) AcceptedStateSummary(arg0 ids.ID, arg1 uint32, arg2 []ids.ID) (OutboundMessage, error) { 78 m.ctrl.T.Helper() 79 ret := m.ctrl.Call(m, "AcceptedStateSummary", arg0, arg1, arg2) 80 ret0, _ := ret[0].(OutboundMessage) 81 ret1, _ := ret[1].(error) 82 return ret0, ret1 83 } 84 85 // AcceptedStateSummary indicates an expected call of AcceptedStateSummary. 86 func (mr *MockOutboundMsgBuilderMockRecorder) AcceptedStateSummary(arg0, arg1, arg2 any) *gomock.Call { 87 mr.mock.ctrl.T.Helper() 88 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AcceptedStateSummary", reflect.TypeOf((*MockOutboundMsgBuilder)(nil).AcceptedStateSummary), arg0, arg1, arg2) 89 } 90 91 // Ancestors mocks base method. 92 func (m *MockOutboundMsgBuilder) Ancestors(arg0 ids.ID, arg1 uint32, arg2 [][]byte) (OutboundMessage, error) { 93 m.ctrl.T.Helper() 94 ret := m.ctrl.Call(m, "Ancestors", arg0, arg1, arg2) 95 ret0, _ := ret[0].(OutboundMessage) 96 ret1, _ := ret[1].(error) 97 return ret0, ret1 98 } 99 100 // Ancestors indicates an expected call of Ancestors. 101 func (mr *MockOutboundMsgBuilderMockRecorder) Ancestors(arg0, arg1, arg2 any) *gomock.Call { 102 mr.mock.ctrl.T.Helper() 103 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Ancestors", reflect.TypeOf((*MockOutboundMsgBuilder)(nil).Ancestors), arg0, arg1, arg2) 104 } 105 106 // AppError mocks base method. 107 func (m *MockOutboundMsgBuilder) AppError(arg0 ids.ID, arg1 uint32, arg2 int32, arg3 string) (OutboundMessage, error) { 108 m.ctrl.T.Helper() 109 ret := m.ctrl.Call(m, "AppError", arg0, arg1, arg2, arg3) 110 ret0, _ := ret[0].(OutboundMessage) 111 ret1, _ := ret[1].(error) 112 return ret0, ret1 113 } 114 115 // AppError indicates an expected call of AppError. 116 func (mr *MockOutboundMsgBuilderMockRecorder) AppError(arg0, arg1, arg2, arg3 any) *gomock.Call { 117 mr.mock.ctrl.T.Helper() 118 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AppError", reflect.TypeOf((*MockOutboundMsgBuilder)(nil).AppError), arg0, arg1, arg2, arg3) 119 } 120 121 // AppGossip mocks base method. 122 func (m *MockOutboundMsgBuilder) AppGossip(arg0 ids.ID, arg1 []byte) (OutboundMessage, error) { 123 m.ctrl.T.Helper() 124 ret := m.ctrl.Call(m, "AppGossip", arg0, arg1) 125 ret0, _ := ret[0].(OutboundMessage) 126 ret1, _ := ret[1].(error) 127 return ret0, ret1 128 } 129 130 // AppGossip indicates an expected call of AppGossip. 131 func (mr *MockOutboundMsgBuilderMockRecorder) AppGossip(arg0, arg1 any) *gomock.Call { 132 mr.mock.ctrl.T.Helper() 133 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AppGossip", reflect.TypeOf((*MockOutboundMsgBuilder)(nil).AppGossip), arg0, arg1) 134 } 135 136 // AppRequest mocks base method. 137 func (m *MockOutboundMsgBuilder) AppRequest(arg0 ids.ID, arg1 uint32, arg2 time.Duration, arg3 []byte) (OutboundMessage, error) { 138 m.ctrl.T.Helper() 139 ret := m.ctrl.Call(m, "AppRequest", arg0, arg1, arg2, arg3) 140 ret0, _ := ret[0].(OutboundMessage) 141 ret1, _ := ret[1].(error) 142 return ret0, ret1 143 } 144 145 // AppRequest indicates an expected call of AppRequest. 146 func (mr *MockOutboundMsgBuilderMockRecorder) AppRequest(arg0, arg1, arg2, arg3 any) *gomock.Call { 147 mr.mock.ctrl.T.Helper() 148 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AppRequest", reflect.TypeOf((*MockOutboundMsgBuilder)(nil).AppRequest), arg0, arg1, arg2, arg3) 149 } 150 151 // AppResponse mocks base method. 152 func (m *MockOutboundMsgBuilder) AppResponse(arg0 ids.ID, arg1 uint32, arg2 []byte) (OutboundMessage, error) { 153 m.ctrl.T.Helper() 154 ret := m.ctrl.Call(m, "AppResponse", arg0, arg1, arg2) 155 ret0, _ := ret[0].(OutboundMessage) 156 ret1, _ := ret[1].(error) 157 return ret0, ret1 158 } 159 160 // AppResponse indicates an expected call of AppResponse. 161 func (mr *MockOutboundMsgBuilderMockRecorder) AppResponse(arg0, arg1, arg2 any) *gomock.Call { 162 mr.mock.ctrl.T.Helper() 163 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AppResponse", reflect.TypeOf((*MockOutboundMsgBuilder)(nil).AppResponse), arg0, arg1, arg2) 164 } 165 166 // Chits mocks base method. 167 func (m *MockOutboundMsgBuilder) Chits(arg0 ids.ID, arg1 uint32, arg2, arg3, arg4 ids.ID) (OutboundMessage, error) { 168 m.ctrl.T.Helper() 169 ret := m.ctrl.Call(m, "Chits", arg0, arg1, arg2, arg3, arg4) 170 ret0, _ := ret[0].(OutboundMessage) 171 ret1, _ := ret[1].(error) 172 return ret0, ret1 173 } 174 175 // Chits indicates an expected call of Chits. 176 func (mr *MockOutboundMsgBuilderMockRecorder) Chits(arg0, arg1, arg2, arg3, arg4 any) *gomock.Call { 177 mr.mock.ctrl.T.Helper() 178 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Chits", reflect.TypeOf((*MockOutboundMsgBuilder)(nil).Chits), arg0, arg1, arg2, arg3, arg4) 179 } 180 181 // Get mocks base method. 182 func (m *MockOutboundMsgBuilder) Get(arg0 ids.ID, arg1 uint32, arg2 time.Duration, arg3 ids.ID) (OutboundMessage, error) { 183 m.ctrl.T.Helper() 184 ret := m.ctrl.Call(m, "Get", arg0, arg1, arg2, arg3) 185 ret0, _ := ret[0].(OutboundMessage) 186 ret1, _ := ret[1].(error) 187 return ret0, ret1 188 } 189 190 // Get indicates an expected call of Get. 191 func (mr *MockOutboundMsgBuilderMockRecorder) Get(arg0, arg1, arg2, arg3 any) *gomock.Call { 192 mr.mock.ctrl.T.Helper() 193 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Get", reflect.TypeOf((*MockOutboundMsgBuilder)(nil).Get), arg0, arg1, arg2, arg3) 194 } 195 196 // GetAccepted mocks base method. 197 func (m *MockOutboundMsgBuilder) GetAccepted(arg0 ids.ID, arg1 uint32, arg2 time.Duration, arg3 []ids.ID) (OutboundMessage, error) { 198 m.ctrl.T.Helper() 199 ret := m.ctrl.Call(m, "GetAccepted", arg0, arg1, arg2, arg3) 200 ret0, _ := ret[0].(OutboundMessage) 201 ret1, _ := ret[1].(error) 202 return ret0, ret1 203 } 204 205 // GetAccepted indicates an expected call of GetAccepted. 206 func (mr *MockOutboundMsgBuilderMockRecorder) GetAccepted(arg0, arg1, arg2, arg3 any) *gomock.Call { 207 mr.mock.ctrl.T.Helper() 208 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetAccepted", reflect.TypeOf((*MockOutboundMsgBuilder)(nil).GetAccepted), arg0, arg1, arg2, arg3) 209 } 210 211 // GetAcceptedFrontier mocks base method. 212 func (m *MockOutboundMsgBuilder) GetAcceptedFrontier(arg0 ids.ID, arg1 uint32, arg2 time.Duration) (OutboundMessage, error) { 213 m.ctrl.T.Helper() 214 ret := m.ctrl.Call(m, "GetAcceptedFrontier", arg0, arg1, arg2) 215 ret0, _ := ret[0].(OutboundMessage) 216 ret1, _ := ret[1].(error) 217 return ret0, ret1 218 } 219 220 // GetAcceptedFrontier indicates an expected call of GetAcceptedFrontier. 221 func (mr *MockOutboundMsgBuilderMockRecorder) GetAcceptedFrontier(arg0, arg1, arg2 any) *gomock.Call { 222 mr.mock.ctrl.T.Helper() 223 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetAcceptedFrontier", reflect.TypeOf((*MockOutboundMsgBuilder)(nil).GetAcceptedFrontier), arg0, arg1, arg2) 224 } 225 226 // GetAcceptedStateSummary mocks base method. 227 func (m *MockOutboundMsgBuilder) GetAcceptedStateSummary(arg0 ids.ID, arg1 uint32, arg2 time.Duration, arg3 []uint64) (OutboundMessage, error) { 228 m.ctrl.T.Helper() 229 ret := m.ctrl.Call(m, "GetAcceptedStateSummary", arg0, arg1, arg2, arg3) 230 ret0, _ := ret[0].(OutboundMessage) 231 ret1, _ := ret[1].(error) 232 return ret0, ret1 233 } 234 235 // GetAcceptedStateSummary indicates an expected call of GetAcceptedStateSummary. 236 func (mr *MockOutboundMsgBuilderMockRecorder) GetAcceptedStateSummary(arg0, arg1, arg2, arg3 any) *gomock.Call { 237 mr.mock.ctrl.T.Helper() 238 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetAcceptedStateSummary", reflect.TypeOf((*MockOutboundMsgBuilder)(nil).GetAcceptedStateSummary), arg0, arg1, arg2, arg3) 239 } 240 241 // GetAncestors mocks base method. 242 func (m *MockOutboundMsgBuilder) GetAncestors(arg0 ids.ID, arg1 uint32, arg2 time.Duration, arg3 ids.ID, arg4 p2p.EngineType) (OutboundMessage, error) { 243 m.ctrl.T.Helper() 244 ret := m.ctrl.Call(m, "GetAncestors", arg0, arg1, arg2, arg3, arg4) 245 ret0, _ := ret[0].(OutboundMessage) 246 ret1, _ := ret[1].(error) 247 return ret0, ret1 248 } 249 250 // GetAncestors indicates an expected call of GetAncestors. 251 func (mr *MockOutboundMsgBuilderMockRecorder) GetAncestors(arg0, arg1, arg2, arg3, arg4 any) *gomock.Call { 252 mr.mock.ctrl.T.Helper() 253 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetAncestors", reflect.TypeOf((*MockOutboundMsgBuilder)(nil).GetAncestors), arg0, arg1, arg2, arg3, arg4) 254 } 255 256 // GetPeerList mocks base method. 257 func (m *MockOutboundMsgBuilder) GetPeerList(arg0, arg1 []byte) (OutboundMessage, error) { 258 m.ctrl.T.Helper() 259 ret := m.ctrl.Call(m, "GetPeerList", arg0, arg1) 260 ret0, _ := ret[0].(OutboundMessage) 261 ret1, _ := ret[1].(error) 262 return ret0, ret1 263 } 264 265 // GetPeerList indicates an expected call of GetPeerList. 266 func (mr *MockOutboundMsgBuilderMockRecorder) GetPeerList(arg0, arg1 any) *gomock.Call { 267 mr.mock.ctrl.T.Helper() 268 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetPeerList", reflect.TypeOf((*MockOutboundMsgBuilder)(nil).GetPeerList), arg0, arg1) 269 } 270 271 // GetStateSummaryFrontier mocks base method. 272 func (m *MockOutboundMsgBuilder) GetStateSummaryFrontier(arg0 ids.ID, arg1 uint32, arg2 time.Duration) (OutboundMessage, error) { 273 m.ctrl.T.Helper() 274 ret := m.ctrl.Call(m, "GetStateSummaryFrontier", arg0, arg1, arg2) 275 ret0, _ := ret[0].(OutboundMessage) 276 ret1, _ := ret[1].(error) 277 return ret0, ret1 278 } 279 280 // GetStateSummaryFrontier indicates an expected call of GetStateSummaryFrontier. 281 func (mr *MockOutboundMsgBuilderMockRecorder) GetStateSummaryFrontier(arg0, arg1, arg2 any) *gomock.Call { 282 mr.mock.ctrl.T.Helper() 283 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetStateSummaryFrontier", reflect.TypeOf((*MockOutboundMsgBuilder)(nil).GetStateSummaryFrontier), arg0, arg1, arg2) 284 } 285 286 // Handshake mocks base method. 287 func (m *MockOutboundMsgBuilder) Handshake(arg0 uint32, arg1 uint64, arg2 netip.AddrPort, arg3 string, arg4, arg5, arg6 uint32, arg7 uint64, arg8, arg9 []byte, arg10 []ids.ID, arg11, arg12 []uint32, arg13, arg14 []byte) (OutboundMessage, error) { 288 m.ctrl.T.Helper() 289 ret := m.ctrl.Call(m, "Handshake", arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14) 290 ret0, _ := ret[0].(OutboundMessage) 291 ret1, _ := ret[1].(error) 292 return ret0, ret1 293 } 294 295 // Handshake indicates an expected call of Handshake. 296 func (mr *MockOutboundMsgBuilderMockRecorder) Handshake(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14 any) *gomock.Call { 297 mr.mock.ctrl.T.Helper() 298 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Handshake", reflect.TypeOf((*MockOutboundMsgBuilder)(nil).Handshake), arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14) 299 } 300 301 // PeerList mocks base method. 302 func (m *MockOutboundMsgBuilder) PeerList(arg0 []*ips.ClaimedIPPort, arg1 bool) (OutboundMessage, error) { 303 m.ctrl.T.Helper() 304 ret := m.ctrl.Call(m, "PeerList", arg0, arg1) 305 ret0, _ := ret[0].(OutboundMessage) 306 ret1, _ := ret[1].(error) 307 return ret0, ret1 308 } 309 310 // PeerList indicates an expected call of PeerList. 311 func (mr *MockOutboundMsgBuilderMockRecorder) PeerList(arg0, arg1 any) *gomock.Call { 312 mr.mock.ctrl.T.Helper() 313 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "PeerList", reflect.TypeOf((*MockOutboundMsgBuilder)(nil).PeerList), arg0, arg1) 314 } 315 316 // Ping mocks base method. 317 func (m *MockOutboundMsgBuilder) Ping(arg0 uint32, arg1 []*p2p.SubnetUptime) (OutboundMessage, error) { 318 m.ctrl.T.Helper() 319 ret := m.ctrl.Call(m, "Ping", arg0, arg1) 320 ret0, _ := ret[0].(OutboundMessage) 321 ret1, _ := ret[1].(error) 322 return ret0, ret1 323 } 324 325 // Ping indicates an expected call of Ping. 326 func (mr *MockOutboundMsgBuilderMockRecorder) Ping(arg0, arg1 any) *gomock.Call { 327 mr.mock.ctrl.T.Helper() 328 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Ping", reflect.TypeOf((*MockOutboundMsgBuilder)(nil).Ping), arg0, arg1) 329 } 330 331 // Pong mocks base method. 332 func (m *MockOutboundMsgBuilder) Pong() (OutboundMessage, error) { 333 m.ctrl.T.Helper() 334 ret := m.ctrl.Call(m, "Pong") 335 ret0, _ := ret[0].(OutboundMessage) 336 ret1, _ := ret[1].(error) 337 return ret0, ret1 338 } 339 340 // Pong indicates an expected call of Pong. 341 func (mr *MockOutboundMsgBuilderMockRecorder) Pong() *gomock.Call { 342 mr.mock.ctrl.T.Helper() 343 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Pong", reflect.TypeOf((*MockOutboundMsgBuilder)(nil).Pong)) 344 } 345 346 // PullQuery mocks base method. 347 func (m *MockOutboundMsgBuilder) PullQuery(arg0 ids.ID, arg1 uint32, arg2 time.Duration, arg3 ids.ID, arg4 uint64) (OutboundMessage, error) { 348 m.ctrl.T.Helper() 349 ret := m.ctrl.Call(m, "PullQuery", arg0, arg1, arg2, arg3, arg4) 350 ret0, _ := ret[0].(OutboundMessage) 351 ret1, _ := ret[1].(error) 352 return ret0, ret1 353 } 354 355 // PullQuery indicates an expected call of PullQuery. 356 func (mr *MockOutboundMsgBuilderMockRecorder) PullQuery(arg0, arg1, arg2, arg3, arg4 any) *gomock.Call { 357 mr.mock.ctrl.T.Helper() 358 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "PullQuery", reflect.TypeOf((*MockOutboundMsgBuilder)(nil).PullQuery), arg0, arg1, arg2, arg3, arg4) 359 } 360 361 // PushQuery mocks base method. 362 func (m *MockOutboundMsgBuilder) PushQuery(arg0 ids.ID, arg1 uint32, arg2 time.Duration, arg3 []byte, arg4 uint64) (OutboundMessage, error) { 363 m.ctrl.T.Helper() 364 ret := m.ctrl.Call(m, "PushQuery", arg0, arg1, arg2, arg3, arg4) 365 ret0, _ := ret[0].(OutboundMessage) 366 ret1, _ := ret[1].(error) 367 return ret0, ret1 368 } 369 370 // PushQuery indicates an expected call of PushQuery. 371 func (mr *MockOutboundMsgBuilderMockRecorder) PushQuery(arg0, arg1, arg2, arg3, arg4 any) *gomock.Call { 372 mr.mock.ctrl.T.Helper() 373 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "PushQuery", reflect.TypeOf((*MockOutboundMsgBuilder)(nil).PushQuery), arg0, arg1, arg2, arg3, arg4) 374 } 375 376 // Put mocks base method. 377 func (m *MockOutboundMsgBuilder) Put(arg0 ids.ID, arg1 uint32, arg2 []byte) (OutboundMessage, error) { 378 m.ctrl.T.Helper() 379 ret := m.ctrl.Call(m, "Put", arg0, arg1, arg2) 380 ret0, _ := ret[0].(OutboundMessage) 381 ret1, _ := ret[1].(error) 382 return ret0, ret1 383 } 384 385 // Put indicates an expected call of Put. 386 func (mr *MockOutboundMsgBuilderMockRecorder) Put(arg0, arg1, arg2 any) *gomock.Call { 387 mr.mock.ctrl.T.Helper() 388 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Put", reflect.TypeOf((*MockOutboundMsgBuilder)(nil).Put), arg0, arg1, arg2) 389 } 390 391 // StateSummaryFrontier mocks base method. 392 func (m *MockOutboundMsgBuilder) StateSummaryFrontier(arg0 ids.ID, arg1 uint32, arg2 []byte) (OutboundMessage, error) { 393 m.ctrl.T.Helper() 394 ret := m.ctrl.Call(m, "StateSummaryFrontier", arg0, arg1, arg2) 395 ret0, _ := ret[0].(OutboundMessage) 396 ret1, _ := ret[1].(error) 397 return ret0, ret1 398 } 399 400 // StateSummaryFrontier indicates an expected call of StateSummaryFrontier. 401 func (mr *MockOutboundMsgBuilderMockRecorder) StateSummaryFrontier(arg0, arg1, arg2 any) *gomock.Call { 402 mr.mock.ctrl.T.Helper() 403 return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "StateSummaryFrontier", reflect.TypeOf((*MockOutboundMsgBuilder)(nil).StateSummaryFrontier), arg0, arg1, arg2) 404 }