blob: d26a09f42ff5bf187f1246f60498fe8065182c59 [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"
)
// LookupSystem is an autogenerated mock type for the LookupSystem type
type LookupSystem struct {
mock.Mock
}
// Lookup provides a mock function with given fields: ctx, tjID
func (_m *LookupSystem) Lookup(ctx context.Context, tjID string) (string, string, int, error) {
ret := _m.Called(ctx, tjID)
if len(ret) == 0 {
panic("no return value specified for Lookup")
}
var r0 string
var r1 string
var r2 int
var r3 error
if rf, ok := ret.Get(0).(func(context.Context, string) (string, string, int, error)); ok {
return rf(ctx, tjID)
}
if rf, ok := ret.Get(0).(func(context.Context, string) string); ok {
r0 = rf(ctx, tjID)
} else {
r0 = ret.Get(0).(string)
}
if rf, ok := ret.Get(1).(func(context.Context, string) string); ok {
r1 = rf(ctx, tjID)
} else {
r1 = ret.Get(1).(string)
}
if rf, ok := ret.Get(2).(func(context.Context, string) int); ok {
r2 = rf(ctx, tjID)
} else {
r2 = ret.Get(2).(int)
}
if rf, ok := ret.Get(3).(func(context.Context, string) error); ok {
r3 = rf(ctx, tjID)
} else {
r3 = ret.Error(3)
}
return r0, r1, r2, r3
}
// NewLookupSystem creates a new instance of LookupSystem. 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 NewLookupSystem(t interface {
mock.TestingT
Cleanup(func())
}) *LookupSystem {
mock := &LookupSystem{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}