// Code generated by MockGen. DO NOT EDIT. // Source: pkg/clusterapi/fetch.go // Package mocks is a generated GoMock package. package mocks import ( context "context" reflect "reflect" kubernetes "github.com/aws/eks-anywhere/pkg/clients/kubernetes" gomock "github.com/golang/mock/gomock" ) // MockKubeClient is a mock of KubeClient interface. type MockKubeClient struct { ctrl *gomock.Controller recorder *MockKubeClientMockRecorder } // MockKubeClientMockRecorder is the mock recorder for MockKubeClient. type MockKubeClientMockRecorder struct { mock *MockKubeClient } // NewMockKubeClient creates a new mock instance. func NewMockKubeClient(ctrl *gomock.Controller) *MockKubeClient { mock := &MockKubeClient{ctrl: ctrl} mock.recorder = &MockKubeClientMockRecorder{mock} return mock } // EXPECT returns an object that allows the caller to indicate expected use. func (m *MockKubeClient) EXPECT() *MockKubeClientMockRecorder { return m.recorder } // Get mocks base method. func (m *MockKubeClient) Get(ctx context.Context, name, namespace string, obj kubernetes.Object) error { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "Get", ctx, name, namespace, obj) ret0, _ := ret[0].(error) return ret0 } // Get indicates an expected call of Get. func (mr *MockKubeClientMockRecorder) Get(ctx, name, namespace, obj interface{}) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Get", reflect.TypeOf((*MockKubeClient)(nil).Get), ctx, name, namespace, obj) }