1 Star 0 Fork 0

peter/fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
issuer.go 3.29 KB
一键复制 编辑 原始数据 按行查看 历史
Angelo De Caro 提交于 2018-08-08 15:56 . [FAB-11524] Prover: Request Import
// Code generated by counterfeiter. DO NOT EDIT.
package mock
import (
"sync"
"github.com/hyperledger/fabric/protos/token"
"github.com/hyperledger/fabric/token/server"
)
type Issuer struct {
RequestImportStub func(tokensToIssue []*token.TokenToIssue) (*token.TokenTransaction, error)
requestImportMutex sync.RWMutex
requestImportArgsForCall []struct {
tokensToIssue []*token.TokenToIssue
}
requestImportReturns struct {
result1 *token.TokenTransaction
result2 error
}
requestImportReturnsOnCall map[int]struct {
result1 *token.TokenTransaction
result2 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *Issuer) RequestImport(tokensToIssue []*token.TokenToIssue) (*token.TokenTransaction, error) {
var tokensToIssueCopy []*token.TokenToIssue
if tokensToIssue != nil {
tokensToIssueCopy = make([]*token.TokenToIssue, len(tokensToIssue))
copy(tokensToIssueCopy, tokensToIssue)
}
fake.requestImportMutex.Lock()
ret, specificReturn := fake.requestImportReturnsOnCall[len(fake.requestImportArgsForCall)]
fake.requestImportArgsForCall = append(fake.requestImportArgsForCall, struct {
tokensToIssue []*token.TokenToIssue
}{tokensToIssueCopy})
fake.recordInvocation("RequestImport", []interface{}{tokensToIssueCopy})
fake.requestImportMutex.Unlock()
if fake.RequestImportStub != nil {
return fake.RequestImportStub(tokensToIssue)
}
if specificReturn {
return ret.result1, ret.result2
}
return fake.requestImportReturns.result1, fake.requestImportReturns.result2
}
func (fake *Issuer) RequestImportCallCount() int {
fake.requestImportMutex.RLock()
defer fake.requestImportMutex.RUnlock()
return len(fake.requestImportArgsForCall)
}
func (fake *Issuer) RequestImportArgsForCall(i int) []*token.TokenToIssue {
fake.requestImportMutex.RLock()
defer fake.requestImportMutex.RUnlock()
return fake.requestImportArgsForCall[i].tokensToIssue
}
func (fake *Issuer) RequestImportReturns(result1 *token.TokenTransaction, result2 error) {
fake.RequestImportStub = nil
fake.requestImportReturns = struct {
result1 *token.TokenTransaction
result2 error
}{result1, result2}
}
func (fake *Issuer) RequestImportReturnsOnCall(i int, result1 *token.TokenTransaction, result2 error) {
fake.RequestImportStub = nil
if fake.requestImportReturnsOnCall == nil {
fake.requestImportReturnsOnCall = make(map[int]struct {
result1 *token.TokenTransaction
result2 error
})
}
fake.requestImportReturnsOnCall[i] = struct {
result1 *token.TokenTransaction
result2 error
}{result1, result2}
}
func (fake *Issuer) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.requestImportMutex.RLock()
defer fake.requestImportMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *Issuer) 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 _ server.Issuer = new(Issuer)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/peter_code_git/fabric.git
git@gitee.com:peter_code_git/fabric.git
peter_code_git
fabric
fabric
v1.3.0-rc1

搜索帮助