54 lines
1.4 KiB
Go
54 lines
1.4 KiB
Go
// Code generated by mockery v2.14.0. DO NOT EDIT.
|
|
|
|
package mocks
|
|
|
|
import (
|
|
cluster "github.com/hyperledger/fabric/orderer/common/cluster"
|
|
grpc "google.golang.org/grpc"
|
|
|
|
mock "github.com/stretchr/testify/mock"
|
|
)
|
|
|
|
// SecureDialer is an autogenerated mock type for the SecureDialer type
|
|
type SecureDialer struct {
|
|
mock.Mock
|
|
}
|
|
|
|
// Dial provides a mock function with given fields: address, verifyFunc
|
|
func (_m *SecureDialer) Dial(address string, verifyFunc cluster.RemoteVerifier) (*grpc.ClientConn, error) {
|
|
ret := _m.Called(address, verifyFunc)
|
|
|
|
var r0 *grpc.ClientConn
|
|
if rf, ok := ret.Get(0).(func(string, cluster.RemoteVerifier) *grpc.ClientConn); ok {
|
|
r0 = rf(address, verifyFunc)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(*grpc.ClientConn)
|
|
}
|
|
}
|
|
|
|
var r1 error
|
|
if rf, ok := ret.Get(1).(func(string, cluster.RemoteVerifier) error); ok {
|
|
r1 = rf(address, verifyFunc)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
type mockConstructorTestingTNewSecureDialer interface {
|
|
mock.TestingT
|
|
Cleanup(func())
|
|
}
|
|
|
|
// NewSecureDialer creates a new instance of SecureDialer. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
|
|
func NewSecureDialer(t mockConstructorTestingTNewSecureDialer) *SecureDialer {
|
|
mock := &SecureDialer{}
|
|
mock.Mock.Test(t)
|
|
|
|
t.Cleanup(func() { mock.AssertExpectations(t) })
|
|
|
|
return mock
|
|
}
|