95 lines
2.2 KiB
Go
95 lines
2.2 KiB
Go
// Code generated by mockery v2.52.2. DO NOT EDIT.
|
|
|
|
package mocks
|
|
|
|
import (
|
|
http "net/http"
|
|
|
|
mock "github.com/stretchr/testify/mock"
|
|
)
|
|
|
|
// HTTPClient is an autogenerated mock type for the httpClient type
|
|
type HTTPClient struct {
|
|
mock.Mock
|
|
}
|
|
|
|
type HTTPClient_Expecter struct {
|
|
mock *mock.Mock
|
|
}
|
|
|
|
func (_m *HTTPClient) EXPECT() *HTTPClient_Expecter {
|
|
return &HTTPClient_Expecter{mock: &_m.Mock}
|
|
}
|
|
|
|
// Do provides a mock function with given fields: _a0
|
|
func (_m *HTTPClient) Do(_a0 *http.Request) (*http.Response, error) {
|
|
ret := _m.Called(_a0)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for Do")
|
|
}
|
|
|
|
var r0 *http.Response
|
|
var r1 error
|
|
if rf, ok := ret.Get(0).(func(*http.Request) (*http.Response, error)); ok {
|
|
return rf(_a0)
|
|
}
|
|
if rf, ok := ret.Get(0).(func(*http.Request) *http.Response); ok {
|
|
r0 = rf(_a0)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(*http.Response)
|
|
}
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func(*http.Request) error); ok {
|
|
r1 = rf(_a0)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// HTTPClient_Do_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Do'
|
|
type HTTPClient_Do_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// Do is a helper method to define mock.On call
|
|
// - _a0 *http.Request
|
|
func (_e *HTTPClient_Expecter) Do(_a0 interface{}) *HTTPClient_Do_Call {
|
|
return &HTTPClient_Do_Call{Call: _e.mock.On("Do", _a0)}
|
|
}
|
|
|
|
func (_c *HTTPClient_Do_Call) Run(run func(_a0 *http.Request)) *HTTPClient_Do_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].(*http.Request))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *HTTPClient_Do_Call) Return(_a0 *http.Response, _a1 error) *HTTPClient_Do_Call {
|
|
_c.Call.Return(_a0, _a1)
|
|
return _c
|
|
}
|
|
|
|
func (_c *HTTPClient_Do_Call) RunAndReturn(run func(*http.Request) (*http.Response, error)) *HTTPClient_Do_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// NewHTTPClient creates a new instance of HTTPClient. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
|
|
// The first argument is typically a *testing.T value.
|
|
func NewHTTPClient(t interface {
|
|
mock.TestingT
|
|
Cleanup(func())
|
|
}) *HTTPClient {
|
|
mock := &HTTPClient{}
|
|
mock.Mock.Test(t)
|
|
|
|
t.Cleanup(func() { mock.AssertExpectations(t) })
|
|
|
|
return mock
|
|
}
|