-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmock_authRegistrationClient_test.go
More file actions
132 lines (105 loc) · 4.11 KB
/
mock_authRegistrationClient_test.go
File metadata and controls
132 lines (105 loc) · 4.11 KB
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
// Code generated by mockery v2.53.6. DO NOT EDIT.
package main
import (
mock "github.com/stretchr/testify/mock"
rest "k8s.io/client-go/rest"
v1 "github.com/cloudogu/k8s-auth-registration-lib/client/typed/api/v1"
)
// mockAuthRegistrationClient is an autogenerated mock type for the authRegistrationClient type
type mockAuthRegistrationClient struct {
mock.Mock
}
type mockAuthRegistrationClient_Expecter struct {
mock *mock.Mock
}
func (_m *mockAuthRegistrationClient) EXPECT() *mockAuthRegistrationClient_Expecter {
return &mockAuthRegistrationClient_Expecter{mock: &_m.Mock}
}
// AuthRegistrations provides a mock function with given fields: namespace
func (_m *mockAuthRegistrationClient) AuthRegistrations(namespace string) v1.AuthRegistrationInterface {
ret := _m.Called(namespace)
if len(ret) == 0 {
panic("no return value specified for AuthRegistrations")
}
var r0 v1.AuthRegistrationInterface
if rf, ok := ret.Get(0).(func(string) v1.AuthRegistrationInterface); ok {
r0 = rf(namespace)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(v1.AuthRegistrationInterface)
}
}
return r0
}
// mockAuthRegistrationClient_AuthRegistrations_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AuthRegistrations'
type mockAuthRegistrationClient_AuthRegistrations_Call struct {
*mock.Call
}
// AuthRegistrations is a helper method to define mock.On call
// - namespace string
func (_e *mockAuthRegistrationClient_Expecter) AuthRegistrations(namespace interface{}) *mockAuthRegistrationClient_AuthRegistrations_Call {
return &mockAuthRegistrationClient_AuthRegistrations_Call{Call: _e.mock.On("AuthRegistrations", namespace)}
}
func (_c *mockAuthRegistrationClient_AuthRegistrations_Call) Run(run func(namespace string)) *mockAuthRegistrationClient_AuthRegistrations_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(string))
})
return _c
}
func (_c *mockAuthRegistrationClient_AuthRegistrations_Call) Return(_a0 v1.AuthRegistrationInterface) *mockAuthRegistrationClient_AuthRegistrations_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *mockAuthRegistrationClient_AuthRegistrations_Call) RunAndReturn(run func(string) v1.AuthRegistrationInterface) *mockAuthRegistrationClient_AuthRegistrations_Call {
_c.Call.Return(run)
return _c
}
// RESTClient provides a mock function with no fields
func (_m *mockAuthRegistrationClient) RESTClient() rest.Interface {
ret := _m.Called()
if len(ret) == 0 {
panic("no return value specified for RESTClient")
}
var r0 rest.Interface
if rf, ok := ret.Get(0).(func() rest.Interface); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(rest.Interface)
}
}
return r0
}
// mockAuthRegistrationClient_RESTClient_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'RESTClient'
type mockAuthRegistrationClient_RESTClient_Call struct {
*mock.Call
}
// RESTClient is a helper method to define mock.On call
func (_e *mockAuthRegistrationClient_Expecter) RESTClient() *mockAuthRegistrationClient_RESTClient_Call {
return &mockAuthRegistrationClient_RESTClient_Call{Call: _e.mock.On("RESTClient")}
}
func (_c *mockAuthRegistrationClient_RESTClient_Call) Run(run func()) *mockAuthRegistrationClient_RESTClient_Call {
_c.Call.Run(func(args mock.Arguments) {
run()
})
return _c
}
func (_c *mockAuthRegistrationClient_RESTClient_Call) Return(_a0 rest.Interface) *mockAuthRegistrationClient_RESTClient_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *mockAuthRegistrationClient_RESTClient_Call) RunAndReturn(run func() rest.Interface) *mockAuthRegistrationClient_RESTClient_Call {
_c.Call.Return(run)
return _c
}
// newMockAuthRegistrationClient creates a new instance of mockAuthRegistrationClient. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
// The first argument is typically a *testing.T value.
func newMockAuthRegistrationClient(t interface {
mock.TestingT
Cleanup(func())
}) *mockAuthRegistrationClient {
mock := &mockAuthRegistrationClient{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}