代码拉取完成,页面将自动刷新
// 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)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。