1 Star 1 Fork 0

Hyperledger Fabric 国密 / fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
ecp.go 2.27 KB
一键复制 编辑 原始数据 按行查看 历史
Jtyoui 提交于 2021-07-22 15:59 . 国密
// Code generated by counterfeiter. DO NOT EDIT.
package mock
import (
"sync"
"gitee.com/hyperledger-fabric-gm/fabric/bccsp/idemix/handlers"
)
type Ecp struct {
BytesStub func() ([]byte, error)
bytesMutex sync.RWMutex
bytesArgsForCall []struct{}
bytesReturns struct {
result1 []byte
result2 error
}
bytesReturnsOnCall map[int]struct {
result1 []byte
result2 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *Ecp) Bytes() ([]byte, error) {
fake.bytesMutex.Lock()
ret, specificReturn := fake.bytesReturnsOnCall[len(fake.bytesArgsForCall)]
fake.bytesArgsForCall = append(fake.bytesArgsForCall, struct{}{})
fake.recordInvocation("Bytes", []interface{}{})
fake.bytesMutex.Unlock()
if fake.BytesStub != nil {
return fake.BytesStub()
}
if specificReturn {
return ret.result1, ret.result2
}
return fake.bytesReturns.result1, fake.bytesReturns.result2
}
func (fake *Ecp) BytesCallCount() int {
fake.bytesMutex.RLock()
defer fake.bytesMutex.RUnlock()
return len(fake.bytesArgsForCall)
}
func (fake *Ecp) BytesReturns(result1 []byte, result2 error) {
fake.BytesStub = nil
fake.bytesReturns = struct {
result1 []byte
result2 error
}{result1, result2}
}
func (fake *Ecp) BytesReturnsOnCall(i int, result1 []byte, result2 error) {
fake.BytesStub = nil
if fake.bytesReturnsOnCall == nil {
fake.bytesReturnsOnCall = make(map[int]struct {
result1 []byte
result2 error
})
}
fake.bytesReturnsOnCall[i] = struct {
result1 []byte
result2 error
}{result1, result2}
}
func (fake *Ecp) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.bytesMutex.RLock()
defer fake.bytesMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *Ecp) 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 _ handlers.Ecp = new(Ecp)
Go
1
https://gitee.com/hyperledger-fabric-gm/fabric.git
git@gitee.com:hyperledger-fabric-gm/fabric.git
hyperledger-fabric-gm
fabric
fabric
v1.4.9

搜索帮助