3 Star 6 Fork 7

Gitee 极速下载 / Hyperledger fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/hyperledger/fabric
克隆/下载
builder.go 2.52 KB
一键复制 编辑 原始数据 按行查看 历史
Gari Singh 提交于 2018-11-13 16:40 . Add HealthCheck to VM implementations
// Code generated by counterfeiter. DO NOT EDIT.
package mock
import (
io "io"
sync "sync"
)
type Builder struct {
BuildStub func() (io.Reader, error)
buildMutex sync.RWMutex
buildArgsForCall []struct {
}
buildReturns struct {
result1 io.Reader
result2 error
}
buildReturnsOnCall map[int]struct {
result1 io.Reader
result2 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *Builder) Build() (io.Reader, error) {
fake.buildMutex.Lock()
ret, specificReturn := fake.buildReturnsOnCall[len(fake.buildArgsForCall)]
fake.buildArgsForCall = append(fake.buildArgsForCall, struct {
}{})
fake.recordInvocation("Build", []interface{}{})
fake.buildMutex.Unlock()
if fake.BuildStub != nil {
return fake.BuildStub()
}
if specificReturn {
return ret.result1, ret.result2
}
fakeReturns := fake.buildReturns
return fakeReturns.result1, fakeReturns.result2
}
func (fake *Builder) BuildCallCount() int {
fake.buildMutex.RLock()
defer fake.buildMutex.RUnlock()
return len(fake.buildArgsForCall)
}
func (fake *Builder) BuildCalls(stub func() (io.Reader, error)) {
fake.buildMutex.Lock()
defer fake.buildMutex.Unlock()
fake.BuildStub = stub
}
func (fake *Builder) BuildReturns(result1 io.Reader, result2 error) {
fake.buildMutex.Lock()
defer fake.buildMutex.Unlock()
fake.BuildStub = nil
fake.buildReturns = struct {
result1 io.Reader
result2 error
}{result1, result2}
}
func (fake *Builder) BuildReturnsOnCall(i int, result1 io.Reader, result2 error) {
fake.buildMutex.Lock()
defer fake.buildMutex.Unlock()
fake.BuildStub = nil
if fake.buildReturnsOnCall == nil {
fake.buildReturnsOnCall = make(map[int]struct {
result1 io.Reader
result2 error
})
}
fake.buildReturnsOnCall[i] = struct {
result1 io.Reader
result2 error
}{result1, result2}
}
func (fake *Builder) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.buildMutex.RLock()
defer fake.buildMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *Builder) 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)
}
1
https://gitee.com/mirrors/fabric.git
git@gitee.com:mirrors/fabric.git
mirrors
fabric
Hyperledger fabric
v1.4.12

搜索帮助