50 lines
1.1 KiB
Go
50 lines
1.1 KiB
Go
|
// Code generated by mockery v2.12.2. DO NOT EDIT.
|
||
|
|
||
|
package mocks
|
||
|
|
||
|
import (
|
||
|
testing "testing"
|
||
|
|
||
|
mock "github.com/stretchr/testify/mock"
|
||
|
|
||
|
twitter "git.netflux.io/rob/elon-eats-my-tweets/twitter"
|
||
|
)
|
||
|
|
||
|
// TwitterAPIClient is an autogenerated mock type for the APIClient type
|
||
|
type TwitterAPIClient struct {
|
||
|
mock.Mock
|
||
|
}
|
||
|
|
||
|
// GetMe provides a mock function with given fields:
|
||
|
func (_m *TwitterAPIClient) GetMe() (*twitter.User, error) {
|
||
|
ret := _m.Called()
|
||
|
|
||
|
var r0 *twitter.User
|
||
|
if rf, ok := ret.Get(0).(func() *twitter.User); ok {
|
||
|
r0 = rf()
|
||
|
} else {
|
||
|
if ret.Get(0) != nil {
|
||
|
r0 = ret.Get(0).(*twitter.User)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var r1 error
|
||
|
if rf, ok := ret.Get(1).(func() error); ok {
|
||
|
r1 = rf()
|
||
|
} else {
|
||
|
r1 = ret.Error(1)
|
||
|
}
|
||
|
|
||
|
return r0, r1
|
||
|
}
|
||
|
|
||
|
// NewTwitterAPIClient creates a new instance of TwitterAPIClient. It also registers the testing.TB interface on the mock and a cleanup function to assert the mocks expectations.
|
||
|
func NewTwitterAPIClient(t testing.TB) *TwitterAPIClient {
|
||
|
mock := &TwitterAPIClient{}
|
||
|
mock.Mock.Test(t)
|
||
|
|
||
|
t.Cleanup(func() { mock.AssertExpectations(t) })
|
||
|
|
||
|
return mock
|
||
|
}
|