1 Star 0 Fork 0

peter / fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
unary_handler.go 2.78 KB
一键复制 编辑 原始数据 按行查看 历史
// Code generated by counterfeiter. DO NOT EDIT.
package mock
import (
context "context"
sync "sync"
)
type UnaryHandler struct {
Stub func(context.Context, interface{}) (interface{}, error)
mutex sync.RWMutex
argsForCall []struct {
arg1 context.Context
arg2 interface{}
}
returns struct {
result1 interface{}
result2 error
}
returnsOnCall map[int]struct {
result1 interface{}
result2 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *UnaryHandler) Spy(arg1 context.Context, arg2 interface{}) (interface{}, error) {
fake.mutex.Lock()
ret, specificReturn := fake.returnsOnCall[len(fake.argsForCall)]
fake.argsForCall = append(fake.argsForCall, struct {
arg1 context.Context
arg2 interface{}
}{arg1, arg2})
fake.recordInvocation("unaryHandler", []interface{}{arg1, arg2})
fake.mutex.Unlock()
if fake.Stub != nil {
return fake.Stub(arg1, arg2)
}
if specificReturn {
return ret.result1, ret.result2
}
return fake.returns.result1, fake.returns.result2
}
func (fake *UnaryHandler) CallCount() int {
fake.mutex.RLock()
defer fake.mutex.RUnlock()
return len(fake.argsForCall)
}
func (fake *UnaryHandler) Calls(stub func(context.Context, interface{}) (interface{}, error)) {
fake.mutex.Lock()
defer fake.mutex.Unlock()
fake.Stub = stub
}
func (fake *UnaryHandler) ArgsForCall(i int) (context.Context, interface{}) {
fake.mutex.RLock()
defer fake.mutex.RUnlock()
return fake.argsForCall[i].arg1, fake.argsForCall[i].arg2
}
func (fake *UnaryHandler) Returns(result1 interface{}, result2 error) {
fake.mutex.Lock()
defer fake.mutex.Unlock()
fake.Stub = nil
fake.returns = struct {
result1 interface{}
result2 error
}{result1, result2}
}
func (fake *UnaryHandler) ReturnsOnCall(i int, result1 interface{}, result2 error) {
fake.mutex.Lock()
defer fake.mutex.Unlock()
fake.Stub = nil
if fake.returnsOnCall == nil {
fake.returnsOnCall = make(map[int]struct {
result1 interface{}
result2 error
})
}
fake.returnsOnCall[i] = struct {
result1 interface{}
result2 error
}{result1, result2}
}
func (fake *UnaryHandler) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.mutex.RLock()
defer fake.mutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *UnaryHandler) 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/peter_code_git/fabric.git
git@gitee.com:peter_code_git/fabric.git
peter_code_git
fabric
fabric
v1.4.7

搜索帮助