recipes2/internal/http-server/handlers/recipes/mocks/RecipesProvider.go

60 lines
1.5 KiB
Go

// Code generated by mockery v2.40.1. DO NOT EDIT.
package mocks
import (
context "context"
models "recipes/internal/domain/models"
mock "github.com/stretchr/testify/mock"
)
// RecipesProvider is an autogenerated mock type for the RecipesProvider type
type RecipesProvider struct {
mock.Mock
}
// GetRecipes provides a mock function with given fields: ctx, offset, limit
func (_m *RecipesProvider) GetRecipes(ctx context.Context, offset int, limit int) ([]models.Recipe, error) {
ret := _m.Called(ctx, offset, limit)
if len(ret) == 0 {
panic("no return value specified for GetRecipes")
}
var r0 []models.Recipe
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, int, int) ([]models.Recipe, error)); ok {
return rf(ctx, offset, limit)
}
if rf, ok := ret.Get(0).(func(context.Context, int, int) []models.Recipe); ok {
r0 = rf(ctx, offset, limit)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]models.Recipe)
}
}
if rf, ok := ret.Get(1).(func(context.Context, int, int) error); ok {
r1 = rf(ctx, offset, limit)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// NewRecipesProvider creates a new instance of RecipesProvider. 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 NewRecipesProvider(t interface {
mock.TestingT
Cleanup(func())
}) *RecipesProvider {
mock := &RecipesProvider{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}