github.com/kaituanwang/hyperledger@v2.0.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 ( 6 common "github.com/hyperledger/fabric/gossip/privdata/common" 7 mock "github.com/stretchr/testify/mock" 8 ) 9 10 // ReconciliationFetcher is an autogenerated mock type for the ReconciliationFetcher type 11 type ReconciliationFetcher struct { 12 mock.Mock 13 } 14 15 // FetchReconciledItems provides a mock function with given fields: dig2collectionConfig 16 func (_m *ReconciliationFetcher) FetchReconciledItems(dig2collectionConfig common.Dig2CollectionConfig) (*common.FetchedPvtDataContainer, error) { 17 ret := _m.Called(dig2collectionConfig) 18 19 var r0 *common.FetchedPvtDataContainer 20 if rf, ok := ret.Get(0).(func(common.Dig2CollectionConfig) *common.FetchedPvtDataContainer); ok { 21 r0 = rf(dig2collectionConfig) 22 } else { 23 if ret.Get(0) != nil { 24 r0 = ret.Get(0).(*common.FetchedPvtDataContainer) 25 } 26 } 27 28 var r1 error 29 if rf, ok := ret.Get(1).(func(common.Dig2CollectionConfig) error); ok { 30 r1 = rf(dig2collectionConfig) 31 } else { 32 r1 = ret.Error(1) 33 } 34 35 return r0, r1 36 }