-
Notifications
You must be signed in to change notification settings - Fork 0
/
mock_broker.go
110 lines (89 loc) · 2.92 KB
/
mock_broker.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
// Code generated by mockery v2.20.2. DO NOT EDIT.
package trengin
import (
context "context"
mock "github.com/stretchr/testify/mock"
)
// MockBroker is an autogenerated mock type for the Broker type
type MockBroker struct {
mock.Mock
}
// ChangeConditionalOrder provides a mock function with given fields: ctx, action
func (_m *MockBroker) ChangeConditionalOrder(ctx context.Context, action ChangeConditionalOrderAction) (Position, error) {
ret := _m.Called(ctx, action)
var r0 Position
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, ChangeConditionalOrderAction) (Position, error)); ok {
return rf(ctx, action)
}
if rf, ok := ret.Get(0).(func(context.Context, ChangeConditionalOrderAction) Position); ok {
r0 = rf(ctx, action)
} else {
r0 = ret.Get(0).(Position)
}
if rf, ok := ret.Get(1).(func(context.Context, ChangeConditionalOrderAction) error); ok {
r1 = rf(ctx, action)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// ClosePosition provides a mock function with given fields: ctx, action
func (_m *MockBroker) ClosePosition(ctx context.Context, action ClosePositionAction) (Position, error) {
ret := _m.Called(ctx, action)
var r0 Position
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, ClosePositionAction) (Position, error)); ok {
return rf(ctx, action)
}
if rf, ok := ret.Get(0).(func(context.Context, ClosePositionAction) Position); ok {
r0 = rf(ctx, action)
} else {
r0 = ret.Get(0).(Position)
}
if rf, ok := ret.Get(1).(func(context.Context, ClosePositionAction) error); ok {
r1 = rf(ctx, action)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// OpenPosition provides a mock function with given fields: ctx, action
func (_m *MockBroker) OpenPosition(ctx context.Context, action OpenPositionAction) (Position, PositionClosed, error) {
ret := _m.Called(ctx, action)
var r0 Position
var r1 PositionClosed
var r2 error
if rf, ok := ret.Get(0).(func(context.Context, OpenPositionAction) (Position, PositionClosed, error)); ok {
return rf(ctx, action)
}
if rf, ok := ret.Get(0).(func(context.Context, OpenPositionAction) Position); ok {
r0 = rf(ctx, action)
} else {
r0 = ret.Get(0).(Position)
}
if rf, ok := ret.Get(1).(func(context.Context, OpenPositionAction) PositionClosed); ok {
r1 = rf(ctx, action)
} else {
if ret.Get(1) != nil {
r1 = ret.Get(1).(PositionClosed)
}
}
if rf, ok := ret.Get(2).(func(context.Context, OpenPositionAction) error); ok {
r2 = rf(ctx, action)
} else {
r2 = ret.Error(2)
}
return r0, r1, r2
}
type mockConstructorTestingTNewMockBroker interface {
mock.TestingT
Cleanup(func())
}
// NewMockBroker creates a new instance of MockBroker. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
func NewMockBroker(t mockConstructorTestingTNewMockBroker) *MockBroker {
mock := &MockBroker{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}