Documentation ¶
Overview ¶
Package mocks is a generated GoMock package.
Package mocks is a generated GoMock package.
Index ¶
- type MockServiceProfileClient
- func (m *MockServiceProfileClient) BaseClient() clients.ResourceClient
- func (m *MockServiceProfileClient) Delete(namespace, name string, opts clients.DeleteOpts) error
- func (m *MockServiceProfileClient) EXPECT() *MockServiceProfileClientMockRecorder
- func (m *MockServiceProfileClient) List(namespace string, opts clients.ListOpts) (v1.ServiceProfileList, error)
- func (m *MockServiceProfileClient) Read(namespace, name string, opts clients.ReadOpts) (*v1.ServiceProfile, error)
- func (m *MockServiceProfileClient) Register() error
- func (m *MockServiceProfileClient) Watch(namespace string, opts clients.WatchOpts) (<-chan v1.ServiceProfileList, <-chan error, error)
- func (m *MockServiceProfileClient) Write(resource *v1.ServiceProfile, opts clients.WriteOpts) (*v1.ServiceProfile, error)
- type MockServiceProfileClientMockRecorder
- func (mr *MockServiceProfileClientMockRecorder) BaseClient() *gomock.Call
- func (mr *MockServiceProfileClientMockRecorder) Delete(namespace, name, opts interface{}) *gomock.Call
- func (mr *MockServiceProfileClientMockRecorder) List(namespace, opts interface{}) *gomock.Call
- func (mr *MockServiceProfileClientMockRecorder) Read(namespace, name, opts interface{}) *gomock.Call
- func (mr *MockServiceProfileClientMockRecorder) Register() *gomock.Call
- func (mr *MockServiceProfileClientMockRecorder) Watch(namespace, opts interface{}) *gomock.Call
- func (mr *MockServiceProfileClientMockRecorder) Write(resource, opts interface{}) *gomock.Call
- type MockServiceProfileReconciler
- type MockServiceProfileReconcilerMockRecorder
- type MockServiceProfileWatcher
- type MockServiceProfileWatcherMockRecorder
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type MockServiceProfileClient ¶
type MockServiceProfileClient struct {
// contains filtered or unexported fields
}
MockServiceProfileClient is a mock of ServiceProfileClient interface
func NewMockServiceProfileClient ¶
func NewMockServiceProfileClient(ctrl *gomock.Controller) *MockServiceProfileClient
NewMockServiceProfileClient creates a new mock instance
func (*MockServiceProfileClient) BaseClient ¶
func (m *MockServiceProfileClient) BaseClient() clients.ResourceClient
BaseClient mocks base method
func (*MockServiceProfileClient) Delete ¶
func (m *MockServiceProfileClient) Delete(namespace, name string, opts clients.DeleteOpts) error
Delete mocks base method
func (*MockServiceProfileClient) EXPECT ¶
func (m *MockServiceProfileClient) EXPECT() *MockServiceProfileClientMockRecorder
EXPECT returns an object that allows the caller to indicate expected use
func (*MockServiceProfileClient) List ¶
func (m *MockServiceProfileClient) List(namespace string, opts clients.ListOpts) (v1.ServiceProfileList, error)
List mocks base method
func (*MockServiceProfileClient) Read ¶
func (m *MockServiceProfileClient) Read(namespace, name string, opts clients.ReadOpts) (*v1.ServiceProfile, error)
Read mocks base method
func (*MockServiceProfileClient) Register ¶
func (m *MockServiceProfileClient) Register() error
Register mocks base method
func (*MockServiceProfileClient) Watch ¶
func (m *MockServiceProfileClient) Watch(namespace string, opts clients.WatchOpts) (<-chan v1.ServiceProfileList, <-chan error, error)
Watch mocks base method
func (*MockServiceProfileClient) Write ¶
func (m *MockServiceProfileClient) Write(resource *v1.ServiceProfile, opts clients.WriteOpts) (*v1.ServiceProfile, error)
Write mocks base method
type MockServiceProfileClientMockRecorder ¶
type MockServiceProfileClientMockRecorder struct {
// contains filtered or unexported fields
}
MockServiceProfileClientMockRecorder is the mock recorder for MockServiceProfileClient
func (*MockServiceProfileClientMockRecorder) BaseClient ¶
func (mr *MockServiceProfileClientMockRecorder) BaseClient() *gomock.Call
BaseClient indicates an expected call of BaseClient
func (*MockServiceProfileClientMockRecorder) Delete ¶
func (mr *MockServiceProfileClientMockRecorder) Delete(namespace, name, opts interface{}) *gomock.Call
Delete indicates an expected call of Delete
func (*MockServiceProfileClientMockRecorder) List ¶
func (mr *MockServiceProfileClientMockRecorder) List(namespace, opts interface{}) *gomock.Call
List indicates an expected call of List
func (*MockServiceProfileClientMockRecorder) Read ¶
func (mr *MockServiceProfileClientMockRecorder) Read(namespace, name, opts interface{}) *gomock.Call
Read indicates an expected call of Read
func (*MockServiceProfileClientMockRecorder) Register ¶
func (mr *MockServiceProfileClientMockRecorder) Register() *gomock.Call
Register indicates an expected call of Register
func (*MockServiceProfileClientMockRecorder) Watch ¶
func (mr *MockServiceProfileClientMockRecorder) Watch(namespace, opts interface{}) *gomock.Call
Watch indicates an expected call of Watch
func (*MockServiceProfileClientMockRecorder) Write ¶
func (mr *MockServiceProfileClientMockRecorder) Write(resource, opts interface{}) *gomock.Call
Write indicates an expected call of Write
type MockServiceProfileReconciler ¶
type MockServiceProfileReconciler struct {
// contains filtered or unexported fields
}
MockServiceProfileReconciler is a mock of ServiceProfileReconciler interface
func NewMockServiceProfileReconciler ¶
func NewMockServiceProfileReconciler(ctrl *gomock.Controller) *MockServiceProfileReconciler
NewMockServiceProfileReconciler creates a new mock instance
func (*MockServiceProfileReconciler) EXPECT ¶
func (m *MockServiceProfileReconciler) EXPECT() *MockServiceProfileReconcilerMockRecorder
EXPECT returns an object that allows the caller to indicate expected use
func (*MockServiceProfileReconciler) Reconcile ¶
func (m *MockServiceProfileReconciler) Reconcile(namespace string, desiredResources v1.ServiceProfileList, transition v1.TransitionServiceProfileFunc, opts clients.ListOpts) error
Reconcile mocks base method
type MockServiceProfileReconcilerMockRecorder ¶
type MockServiceProfileReconcilerMockRecorder struct {
// contains filtered or unexported fields
}
MockServiceProfileReconcilerMockRecorder is the mock recorder for MockServiceProfileReconciler
func (*MockServiceProfileReconcilerMockRecorder) Reconcile ¶
func (mr *MockServiceProfileReconcilerMockRecorder) Reconcile(namespace, desiredResources, transition, opts interface{}) *gomock.Call
Reconcile indicates an expected call of Reconcile
type MockServiceProfileWatcher ¶ added in v0.3.18
type MockServiceProfileWatcher struct {
// contains filtered or unexported fields
}
MockServiceProfileWatcher is a mock of ServiceProfileWatcher interface
func NewMockServiceProfileWatcher ¶ added in v0.3.18
func NewMockServiceProfileWatcher(ctrl *gomock.Controller) *MockServiceProfileWatcher
NewMockServiceProfileWatcher creates a new mock instance
func (*MockServiceProfileWatcher) EXPECT ¶ added in v0.3.18
func (m *MockServiceProfileWatcher) EXPECT() *MockServiceProfileWatcherMockRecorder
EXPECT returns an object that allows the caller to indicate expected use
func (*MockServiceProfileWatcher) Watch ¶ added in v0.3.18
func (m *MockServiceProfileWatcher) Watch(namespace string, opts clients.WatchOpts) (<-chan v1.ServiceProfileList, <-chan error, error)
Watch mocks base method
type MockServiceProfileWatcherMockRecorder ¶ added in v0.3.18
type MockServiceProfileWatcherMockRecorder struct {
// contains filtered or unexported fields
}
MockServiceProfileWatcherMockRecorder is the mock recorder for MockServiceProfileWatcher
func (*MockServiceProfileWatcherMockRecorder) Watch ¶ added in v0.3.18
func (mr *MockServiceProfileWatcherMockRecorder) Watch(namespace, opts interface{}) *gomock.Call
Watch indicates an expected call of Watch