blob: d63fedf0190dbfc20c6ceea1bdd529ac13ce5aa6 [file] [log] [blame]
// Code generated by mockery v0.0.0-dev. DO NOT EDIT.
package mocks
import (
context "context"
mock "github.com/stretchr/testify/mock"
testing "testing"
)
// Docsy is an autogenerated mock type for the Docsy type
type Docsy struct {
mock.Mock
}
// Render provides a mock function with given fields: ctx, src, dst
func (_m *Docsy) Render(ctx context.Context, src string, dst string) error {
ret := _m.Called(ctx, src, dst)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, string, string) error); ok {
r0 = rf(ctx, src, dst)
} else {
r0 = ret.Error(0)
}
return r0
}
// NewDocsy creates a new instance of Docsy. It also registers a cleanup function to assert the mocks expectations.
func NewDocsy(t testing.TB) *Docsy {
mock := &Docsy{}
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}