This repository has been archived on 2022-05-25. You can view files and clone it, but cannot push or open issues or pull requests.
elon-eats-my-tweets/generated/mocks/Getter.go

49 lines
1005 B
Go

// Code generated by mockery v2.12.2. DO NOT EDIT.
package mocks
import (
http "net/http"
testing "testing"
mock "github.com/stretchr/testify/mock"
)
// Getter is an autogenerated mock type for the Getter type
type Getter struct {
mock.Mock
}
// Get provides a mock function with given fields: _a0
func (_m *Getter) Get(_a0 string) (*http.Response, error) {
ret := _m.Called(_a0)
var r0 *http.Response
if rf, ok := ret.Get(0).(func(string) *http.Response); ok {
r0 = rf(_a0)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*http.Response)
}
}
var r1 error
if rf, ok := ret.Get(1).(func(string) error); ok {
r1 = rf(_a0)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// NewGetter creates a new instance of Getter. It also registers the testing.TB interface on the mock and a cleanup function to assert the mocks expectations.
func NewGetter(t testing.TB) *Getter {
mock := &Getter{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}