3 Star 6 Fork 7

Gitee 极速下载/Hyperledger fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/hyperledger/fabric
克隆/下载
http_handler.go 2.07 KB
一键复制 编辑 原始数据 按行查看 历史
// Code generated by counterfeiter. DO NOT EDIT.
package fakes
import (
"net/http"
"sync"
)
type HTTPHandler struct {
ServeHTTPStub func(http.ResponseWriter, *http.Request)
serveHTTPMutex sync.RWMutex
serveHTTPArgsForCall []struct {
arg1 http.ResponseWriter
arg2 *http.Request
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *HTTPHandler) ServeHTTP(arg1 http.ResponseWriter, arg2 *http.Request) {
fake.serveHTTPMutex.Lock()
fake.serveHTTPArgsForCall = append(fake.serveHTTPArgsForCall, struct {
arg1 http.ResponseWriter
arg2 *http.Request
}{arg1, arg2})
fake.recordInvocation("ServeHTTP", []interface{}{arg1, arg2})
fake.serveHTTPMutex.Unlock()
if fake.ServeHTTPStub != nil {
fake.ServeHTTPStub(arg1, arg2)
}
}
func (fake *HTTPHandler) ServeHTTPCallCount() int {
fake.serveHTTPMutex.RLock()
defer fake.serveHTTPMutex.RUnlock()
return len(fake.serveHTTPArgsForCall)
}
func (fake *HTTPHandler) ServeHTTPCalls(stub func(http.ResponseWriter, *http.Request)) {
fake.serveHTTPMutex.Lock()
defer fake.serveHTTPMutex.Unlock()
fake.ServeHTTPStub = stub
}
func (fake *HTTPHandler) ServeHTTPArgsForCall(i int) (http.ResponseWriter, *http.Request) {
fake.serveHTTPMutex.RLock()
defer fake.serveHTTPMutex.RUnlock()
argsForCall := fake.serveHTTPArgsForCall[i]
return argsForCall.arg1, argsForCall.arg2
}
func (fake *HTTPHandler) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.serveHTTPMutex.RLock()
defer fake.serveHTTPMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *HTTPHandler) 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)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors/fabric.git
git@gitee.com:mirrors/fabric.git
mirrors
fabric
Hyperledger fabric
v2.1.0

搜索帮助