github.com/anjalikarhana/fabric@v2.1.1+incompatible/orderer/common/cluster/mocks/channel_lister.go (about)

     1  // Code generated by mockery v1.0.0. DO NOT EDIT.
     2  
     3  package mocks
     4  
     5  import (
     6  	cluster "github.com/hyperledger/fabric/orderer/common/cluster"
     7  	mock "github.com/stretchr/testify/mock"
     8  )
     9  
    10  // ChannelLister is an autogenerated mock type for the ChannelLister type
    11  type ChannelLister struct {
    12  	mock.Mock
    13  }
    14  
    15  // Channels provides a mock function with given fields:
    16  func (_m *ChannelLister) Channels() []cluster.ChannelGenesisBlock {
    17  	ret := _m.Called()
    18  
    19  	var r0 []cluster.ChannelGenesisBlock
    20  	if rf, ok := ret.Get(0).(func() []cluster.ChannelGenesisBlock); ok {
    21  		r0 = rf()
    22  	} else {
    23  		if ret.Get(0) != nil {
    24  			r0 = ret.Get(0).([]cluster.ChannelGenesisBlock)
    25  		}
    26  	}
    27  
    28  	return r0
    29  }
    30  
    31  // Close provides a mock function with given fields:
    32  func (_m *ChannelLister) Close() {
    33  	_m.Called()
    34  }