// Code generated by MockGen. DO NOT EDIT. // Source: pkg/cluster/client_builder.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" ) // MockClient is a mock of Client interface. type MockClient struct { ctrl *gomock.Controller recorder *MockClientMockRecorder } // MockClientMockRecorder is the mock recorder for MockClient. type MockClientMockRecorder struct { mock *MockClient } // NewMockClient creates a new mock instance. func NewMockClient(ctrl *gomock.Controller) *MockClient { mock := &MockClient{ctrl: ctrl} mock.recorder = &MockClientMockRecorder{mock} return mock } // EXPECT returns an object that allows the caller to indicate expected use. func (m *MockClient) EXPECT() *MockClientMockRecorder { return m.recorder } // Get mocks base method. func (m *MockClient) 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 *MockClientMockRecorder) Get(ctx, name, namespace, obj interface{}) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Get", reflect.TypeOf((*MockClient)(nil).Get), ctx, name, namespace, obj) }