1 Star 0 Fork 0

妥協/fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
issuing_validator.go 2.74 KB
一键复制 编辑 原始数据 按行查看 历史
Angelo De Caro 提交于 2018-09-24 15:44 . [FAB-12155] IssuerValidator Impl
// Code generated by counterfeiter. DO NOT EDIT.
package mock
import (
"sync"
"github.com/hyperledger/fabric/token/identity"
)
type IssuingValidator struct {
ValidateStub func(creator identity.PublicInfo, tokenType string) error
validateMutex sync.RWMutex
validateArgsForCall []struct {
creator identity.PublicInfo
tokenType string
}
validateReturns struct {
result1 error
}
validateReturnsOnCall map[int]struct {
result1 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *IssuingValidator) Validate(creator identity.PublicInfo, tokenType string) error {
fake.validateMutex.Lock()
ret, specificReturn := fake.validateReturnsOnCall[len(fake.validateArgsForCall)]
fake.validateArgsForCall = append(fake.validateArgsForCall, struct {
creator identity.PublicInfo
tokenType string
}{creator, tokenType})
fake.recordInvocation("Validate", []interface{}{creator, tokenType})
fake.validateMutex.Unlock()
if fake.ValidateStub != nil {
return fake.ValidateStub(creator, tokenType)
}
if specificReturn {
return ret.result1
}
return fake.validateReturns.result1
}
func (fake *IssuingValidator) ValidateCallCount() int {
fake.validateMutex.RLock()
defer fake.validateMutex.RUnlock()
return len(fake.validateArgsForCall)
}
func (fake *IssuingValidator) ValidateArgsForCall(i int) (identity.PublicInfo, string) {
fake.validateMutex.RLock()
defer fake.validateMutex.RUnlock()
return fake.validateArgsForCall[i].creator, fake.validateArgsForCall[i].tokenType
}
func (fake *IssuingValidator) ValidateReturns(result1 error) {
fake.ValidateStub = nil
fake.validateReturns = struct {
result1 error
}{result1}
}
func (fake *IssuingValidator) ValidateReturnsOnCall(i int, result1 error) {
fake.ValidateStub = nil
if fake.validateReturnsOnCall == nil {
fake.validateReturnsOnCall = make(map[int]struct {
result1 error
})
}
fake.validateReturnsOnCall[i] = struct {
result1 error
}{result1}
}
func (fake *IssuingValidator) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.validateMutex.RLock()
defer fake.validateMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *IssuingValidator) 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 _ identity.IssuingValidator = new(IssuingValidator)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liurenhao/fabric.git
git@gitee.com:liurenhao/fabric.git
liurenhao
fabric
fabric
v1.4.6

搜索帮助

0d507c66 1850385 C8b1a773 1850385