github.com/graphql-editor/azure-functions-golang-worker@v0.1.0/mocks/stackTracer.go (about) 1 // Code generated by mockery v1.0.0. DO NOT EDIT. 2 3 package mocks 4 5 import errors "github.com/pkg/errors" 6 import mock "github.com/stretchr/testify/mock" 7 8 // stackTracer is an autogenerated mock type for the stackTracer type 9 type stackTracer struct { 10 mock.Mock 11 } 12 13 // StackTrace provides a mock function with given fields: 14 func (_m *stackTracer) StackTrace() errors.StackTrace { 15 ret := _m.Called() 16 17 var r0 errors.StackTrace 18 if rf, ok := ret.Get(0).(func() errors.StackTrace); ok { 19 r0 = rf() 20 } else { 21 if ret.Get(0) != nil { 22 r0 = ret.Get(0).(errors.StackTrace) 23 } 24 } 25 26 return r0 27 }