-
Notifications
You must be signed in to change notification settings - Fork 0
/
mock_Connector_test.go
44 lines (34 loc) · 969 Bytes
/
mock_Connector_test.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
// Code generated by mockery v1.1.2. DO NOT EDIT.
package main
import mock "github.com/stretchr/testify/mock"
// MockConnector is an autogenerated mock type for the Connector type
type MockConnector struct {
mock.Mock
}
// AddUpstream provides a mock function with given fields: u
func (_m *MockConnector) AddUpstream(u *Upstream) {
_m.Called(u)
}
// AssignConnection provides a mock function with given fields: q
func (_m *MockConnector) AssignConnection(q Query) Query {
ret := _m.Called(q)
var r0 Query
if rf, ok := ret.Get(0).(func(Query) Query); ok {
r0 = rf(q)
} else {
r0 = ret.Get(0).(Query)
}
return r0
}
// Dispatch provides a mock function with given fields: q
func (_m *MockConnector) Dispatch(q Query) {
_m.Called(q)
}
// Fail provides a mock function with given fields: q
func (_m *MockConnector) Fail(q Query) {
_m.Called(q)
}
// Start provides a mock function with given fields:
func (_m *MockConnector) Start() {
_m.Called()
}