// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"). You may // not use this file except in compliance with the License. A copy of the // License is located at // // http://aws.amazon.com/apache2.0/ // // or in the "license" file accompanying this file. This file is distributed // on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either // express or implied. See the License for the specific language governing // permissions and limitations under the License. // // Code generated by MockGen. DO NOT EDIT. // Source: github.com/aws/amazon-ecs-agent/agent/s3 (interfaces: S3Client) // Package mock_s3 is a generated GoMock package. package mock_s3 import ( reflect "reflect" s3 "github.com/aws/aws-sdk-go/service/s3" gomock "github.com/golang/mock/gomock" ) // MockS3Client is a mock of S3Client interface. type MockS3Client struct { ctrl *gomock.Controller recorder *MockS3ClientMockRecorder } // MockS3ClientMockRecorder is the mock recorder for MockS3Client. type MockS3ClientMockRecorder struct { mock *MockS3Client } // NewMockS3Client creates a new mock instance. func NewMockS3Client(ctrl *gomock.Controller) *MockS3Client { mock := &MockS3Client{ctrl: ctrl} mock.recorder = &MockS3ClientMockRecorder{mock} return mock } // EXPECT returns an object that allows the caller to indicate expected use. func (m *MockS3Client) EXPECT() *MockS3ClientMockRecorder { return m.recorder } // GetObject mocks base method. func (m *MockS3Client) GetObject(arg0 *s3.GetObjectInput) (*s3.GetObjectOutput, error) { m.ctrl.T.Helper() ret := m.ctrl.Call(m, "GetObject", arg0) ret0, _ := ret[0].(*s3.GetObjectOutput) ret1, _ := ret[1].(error) return ret0, ret1 } // GetObject indicates an expected call of GetObject. func (mr *MockS3ClientMockRecorder) GetObject(arg0 interface{}) *gomock.Call { mr.mock.ctrl.T.Helper() return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetObject", reflect.TypeOf((*MockS3Client)(nil).GetObject), arg0) }