github.com/kyma-incubator/compass/components/director@v0.0.0-20230623144113-d764f56ff805/internal/systemfetcher/automock/api_client.go (about) 1 // Code generated by mockery. DO NOT EDIT. 2 3 package automock 4 5 import ( 6 http "net/http" 7 8 mock "github.com/stretchr/testify/mock" 9 ) 10 11 // APIClient is an autogenerated mock type for the APIClient type 12 type APIClient struct { 13 mock.Mock 14 } 15 16 // Do provides a mock function with given fields: _a0, _a1 17 func (_m *APIClient) Do(_a0 *http.Request, _a1 string) (*http.Response, error) { 18 ret := _m.Called(_a0, _a1) 19 20 var r0 *http.Response 21 if rf, ok := ret.Get(0).(func(*http.Request, string) *http.Response); ok { 22 r0 = rf(_a0, _a1) 23 } else { 24 if ret.Get(0) != nil { 25 r0 = ret.Get(0).(*http.Response) 26 } 27 } 28 29 var r1 error 30 if rf, ok := ret.Get(1).(func(*http.Request, string) error); ok { 31 r1 = rf(_a0, _a1) 32 } else { 33 r1 = ret.Error(1) 34 } 35 36 return r0, r1 37 } 38 39 type mockConstructorTestingTNewAPIClient interface { 40 mock.TestingT 41 Cleanup(func()) 42 } 43 44 // NewAPIClient creates a new instance of APIClient. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. 45 func NewAPIClient(t mockConstructorTestingTNewAPIClient) *APIClient { 46 mock := &APIClient{} 47 mock.Mock.Test(t) 48 49 t.Cleanup(func() { mock.AssertExpectations(t) }) 50 51 return mock 52 }