github.com/Hnampk/fabric@v2.1.1+incompatible/gossip/privdata/mocks/reconciliation_fetcher.go (about) 1 // Code generated by mockery v1.0.0. DO NOT EDIT. 2 3 package mocks 4 5 import common "github.com/hyperledger/fabric/gossip/privdata/common" 6 import mock "github.com/stretchr/testify/mock" 7 8 // ReconciliationFetcher is an autogenerated mock type for the ReconciliationFetcher type 9 type ReconciliationFetcher struct { 10 mock.Mock 11 } 12 13 // FetchReconciledItems provides a mock function with given fields: dig2collectionConfig 14 func (_m *ReconciliationFetcher) FetchReconciledItems(dig2collectionConfig common.Dig2CollectionConfig) (*common.FetchedPvtDataContainer, error) { 15 ret := _m.Called(dig2collectionConfig) 16 17 var r0 *common.FetchedPvtDataContainer 18 if rf, ok := ret.Get(0).(func(common.Dig2CollectionConfig) *common.FetchedPvtDataContainer); ok { 19 r0 = rf(dig2collectionConfig) 20 } else { 21 if ret.Get(0) != nil { 22 r0 = ret.Get(0).(*common.FetchedPvtDataContainer) 23 } 24 } 25 26 var r1 error 27 if rf, ok := ret.Get(1).(func(common.Dig2CollectionConfig) error); ok { 28 r1 = rf(dig2collectionConfig) 29 } else { 30 r1 = ret.Error(1) 31 } 32 33 return r0, r1 34 }