github.com/koko1123/flow-go-1@v0.29.6/network/mocknetwork/connector.go (about) 1 // Code generated by mockery v2.13.1. DO NOT EDIT. 2 3 package mocknetwork 4 5 import ( 6 context "context" 7 8 mock "github.com/stretchr/testify/mock" 9 10 peer "github.com/libp2p/go-libp2p/core/peer" 11 ) 12 13 // Connector is an autogenerated mock type for the Connector type 14 type Connector struct { 15 mock.Mock 16 } 17 18 // UpdatePeers provides a mock function with given fields: ctx, peerIDs 19 func (_m *Connector) UpdatePeers(ctx context.Context, peerIDs peer.IDSlice) { 20 _m.Called(ctx, peerIDs) 21 } 22 23 type mockConstructorTestingTNewConnector interface { 24 mock.TestingT 25 Cleanup(func()) 26 } 27 28 // NewConnector creates a new instance of Connector. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. 29 func NewConnector(t mockConstructorTestingTNewConnector) *Connector { 30 mock := &Connector{} 31 mock.Mock.Test(t) 32 33 t.Cleanup(func() { mock.AssertExpectations(t) }) 34 35 return mock 36 }