1 Star 1 Fork 0

Hyperledger Fabric 国密 / fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
communicator.go 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
Jtyoui 提交于 2021-07-22 15:59 . 国密
// Code generated by mockery v1.0.0. DO NOT EDIT.
package mocks
import cluster "gitee.com/hyperledger-fabric-gm/fabric/orderer/common/cluster"
import mock "github.com/stretchr/testify/mock"
// Communicator is an autogenerated mock type for the Communicator type
type Communicator struct {
mock.Mock
}
// Configure provides a mock function with given fields: channel, members
func (_m *Communicator) Configure(channel string, members []cluster.RemoteNode) {
_m.Called(channel, members)
}
// Remote provides a mock function with given fields: channel, id
func (_m *Communicator) Remote(channel string, id uint64) (*cluster.RemoteContext, error) {
ret := _m.Called(channel, id)
var r0 *cluster.RemoteContext
if rf, ok := ret.Get(0).(func(string, uint64) *cluster.RemoteContext); ok {
r0 = rf(channel, id)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*cluster.RemoteContext)
}
}
var r1 error
if rf, ok := ret.Get(1).(func(string, uint64) error); ok {
r1 = rf(channel, id)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// Shutdown provides a mock function with given fields:
func (_m *Communicator) Shutdown() {
_m.Called()
}
Go
1
https://gitee.com/hyperledger-fabric-gm/fabric.git
git@gitee.com:hyperledger-fabric-gm/fabric.git
hyperledger-fabric-gm
fabric
fabric
v1.4.9

搜索帮助