gotosocial/internal/apimodule/mock_ClientAPIModule.go

28 lines
594 B
Go
Raw Normal View History

2021-03-26 23:55:32 +01:00
// Code generated by mockery v2.7.4. DO NOT EDIT.
2021-03-31 10:49:07 +02:00
package apimodule
2021-03-26 23:55:32 +01:00
import (
mock "github.com/stretchr/testify/mock"
2021-03-27 13:00:22 +01:00
router "github.com/superseriousbusiness/gotosocial/internal/router"
2021-03-26 23:55:32 +01:00
)
2021-03-27 16:27:28 +01:00
// MockClientAPIModule is an autogenerated mock type for the ClientAPIModule type
type MockClientAPIModule struct {
2021-03-26 23:55:32 +01:00
mock.Mock
}
// Route provides a mock function with given fields: s
2021-03-27 16:27:28 +01:00
func (_m *MockClientAPIModule) Route(s router.Router) error {
2021-03-26 23:55:32 +01:00
ret := _m.Called(s)
var r0 error
if rf, ok := ret.Get(0).(func(router.Router) error); ok {
r0 = rf(s)
} else {
r0 = ret.Error(0)
}
return r0
}