-
Notifications
You must be signed in to change notification settings - Fork 178
/
corruptible_conduit_factory_client.go
94 lines (76 loc) · 2.97 KB
/
corruptible_conduit_factory_client.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
// Code generated by mockery v2.13.1. DO NOT EDIT.
package mockinsecure
import (
context "context"
grpc "google.golang.org/grpc"
emptypb "google.golang.org/protobuf/types/known/emptypb"
insecure "github.com/onflow/flow-go/insecure"
mock "github.com/stretchr/testify/mock"
)
// CorruptibleConduitFactoryClient is an autogenerated mock type for the CorruptibleConduitFactoryClient type
type CorruptibleConduitFactoryClient struct {
mock.Mock
}
// ConnectAttacker provides a mock function with given fields: ctx, in, opts
func (_m *CorruptibleConduitFactoryClient) ConnectAttacker(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (insecure.CorruptibleConduitFactory_ConnectAttackerClient, error) {
_va := make([]interface{}, len(opts))
for _i := range opts {
_va[_i] = opts[_i]
}
var _ca []interface{}
_ca = append(_ca, ctx, in)
_ca = append(_ca, _va...)
ret := _m.Called(_ca...)
var r0 insecure.CorruptibleConduitFactory_ConnectAttackerClient
if rf, ok := ret.Get(0).(func(context.Context, *emptypb.Empty, ...grpc.CallOption) insecure.CorruptibleConduitFactory_ConnectAttackerClient); ok {
r0 = rf(ctx, in, opts...)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(insecure.CorruptibleConduitFactory_ConnectAttackerClient)
}
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context, *emptypb.Empty, ...grpc.CallOption) error); ok {
r1 = rf(ctx, in, opts...)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// ProcessAttackerMessage provides a mock function with given fields: ctx, opts
func (_m *CorruptibleConduitFactoryClient) ProcessAttackerMessage(ctx context.Context, opts ...grpc.CallOption) (insecure.CorruptibleConduitFactory_ProcessAttackerMessageClient, error) {
_va := make([]interface{}, len(opts))
for _i := range opts {
_va[_i] = opts[_i]
}
var _ca []interface{}
_ca = append(_ca, ctx)
_ca = append(_ca, _va...)
ret := _m.Called(_ca...)
var r0 insecure.CorruptibleConduitFactory_ProcessAttackerMessageClient
if rf, ok := ret.Get(0).(func(context.Context, ...grpc.CallOption) insecure.CorruptibleConduitFactory_ProcessAttackerMessageClient); ok {
r0 = rf(ctx, opts...)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(insecure.CorruptibleConduitFactory_ProcessAttackerMessageClient)
}
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context, ...grpc.CallOption) error); ok {
r1 = rf(ctx, opts...)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
type mockConstructorTestingTNewCorruptibleConduitFactoryClient interface {
mock.TestingT
Cleanup(func())
}
// NewCorruptibleConduitFactoryClient creates a new instance of CorruptibleConduitFactoryClient. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
func NewCorruptibleConduitFactoryClient(t mockConstructorTestingTNewCorruptibleConduitFactoryClient) *CorruptibleConduitFactoryClient {
mock := &CorruptibleConduitFactoryClient{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}