1 Star 0 Fork 0

妥協/fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
channel_support_registrar.go 4.53 KB
一键复制 编辑 原始数据 按行查看 历史
Yoav Tock 提交于 2019-04-03 16:49 . FAB-15044 Mig-v1 cleanup #3
// Code generated by counterfeiter. DO NOT EDIT.
package mock
import (
sync "sync"
broadcast "github.com/hyperledger/fabric/orderer/common/broadcast"
common "github.com/hyperledger/fabric/protos/common"
)
type ChannelSupportRegistrar struct {
BroadcastChannelSupportStub func(*common.Envelope) (*common.ChannelHeader, bool, broadcast.ChannelSupport, error)
broadcastChannelSupportMutex sync.RWMutex
broadcastChannelSupportArgsForCall []struct {
arg1 *common.Envelope
}
broadcastChannelSupportReturns struct {
result1 *common.ChannelHeader
result2 bool
result3 broadcast.ChannelSupport
result4 error
}
broadcastChannelSupportReturnsOnCall map[int]struct {
result1 *common.ChannelHeader
result2 bool
result3 broadcast.ChannelSupport
result4 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *ChannelSupportRegistrar) BroadcastChannelSupport(arg1 *common.Envelope) (*common.ChannelHeader, bool, broadcast.ChannelSupport, error) {
fake.broadcastChannelSupportMutex.Lock()
ret, specificReturn := fake.broadcastChannelSupportReturnsOnCall[len(fake.broadcastChannelSupportArgsForCall)]
fake.broadcastChannelSupportArgsForCall = append(fake.broadcastChannelSupportArgsForCall, struct {
arg1 *common.Envelope
}{arg1})
fake.recordInvocation("BroadcastChannelSupport", []interface{}{arg1})
fake.broadcastChannelSupportMutex.Unlock()
if fake.BroadcastChannelSupportStub != nil {
return fake.BroadcastChannelSupportStub(arg1)
}
if specificReturn {
return ret.result1, ret.result2, ret.result3, ret.result4
}
fakeReturns := fake.broadcastChannelSupportReturns
return fakeReturns.result1, fakeReturns.result2, fakeReturns.result3, fakeReturns.result4
}
func (fake *ChannelSupportRegistrar) BroadcastChannelSupportCallCount() int {
fake.broadcastChannelSupportMutex.RLock()
defer fake.broadcastChannelSupportMutex.RUnlock()
return len(fake.broadcastChannelSupportArgsForCall)
}
func (fake *ChannelSupportRegistrar) BroadcastChannelSupportCalls(stub func(*common.Envelope) (*common.ChannelHeader, bool, broadcast.ChannelSupport, error)) {
fake.broadcastChannelSupportMutex.Lock()
defer fake.broadcastChannelSupportMutex.Unlock()
fake.BroadcastChannelSupportStub = stub
}
func (fake *ChannelSupportRegistrar) BroadcastChannelSupportArgsForCall(i int) *common.Envelope {
fake.broadcastChannelSupportMutex.RLock()
defer fake.broadcastChannelSupportMutex.RUnlock()
argsForCall := fake.broadcastChannelSupportArgsForCall[i]
return argsForCall.arg1
}
func (fake *ChannelSupportRegistrar) BroadcastChannelSupportReturns(result1 *common.ChannelHeader, result2 bool, result3 broadcast.ChannelSupport, result4 error) {
fake.broadcastChannelSupportMutex.Lock()
defer fake.broadcastChannelSupportMutex.Unlock()
fake.BroadcastChannelSupportStub = nil
fake.broadcastChannelSupportReturns = struct {
result1 *common.ChannelHeader
result2 bool
result3 broadcast.ChannelSupport
result4 error
}{result1, result2, result3, result4}
}
func (fake *ChannelSupportRegistrar) BroadcastChannelSupportReturnsOnCall(i int, result1 *common.ChannelHeader, result2 bool, result3 broadcast.ChannelSupport, result4 error) {
fake.broadcastChannelSupportMutex.Lock()
defer fake.broadcastChannelSupportMutex.Unlock()
fake.BroadcastChannelSupportStub = nil
if fake.broadcastChannelSupportReturnsOnCall == nil {
fake.broadcastChannelSupportReturnsOnCall = make(map[int]struct {
result1 *common.ChannelHeader
result2 bool
result3 broadcast.ChannelSupport
result4 error
})
}
fake.broadcastChannelSupportReturnsOnCall[i] = struct {
result1 *common.ChannelHeader
result2 bool
result3 broadcast.ChannelSupport
result4 error
}{result1, result2, result3, result4}
}
func (fake *ChannelSupportRegistrar) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.broadcastChannelSupportMutex.RLock()
defer fake.broadcastChannelSupportMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *ChannelSupportRegistrar) recordInvocation(key string, args []interface{}) {
fake.invocationsMutex.Lock()
defer fake.invocationsMutex.Unlock()
if fake.invocations == nil {
fake.invocations = map[string][][]interface{}{}
}
if fake.invocations[key] == nil {
fake.invocations[key] = [][]interface{}{}
}
fake.invocations[key] = append(fake.invocations[key], args)
}
var _ broadcast.ChannelSupportRegistrar = new(ChannelSupportRegistrar)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liurenhao/fabric.git
git@gitee.com:liurenhao/fabric.git
liurenhao
fabric
fabric
v1.4.7

搜索帮助

344bd9b3 5694891 D2dac590 5694891