github.com/goravel/framework@v1.13.9/contracts/log/mocks/Logger.go (about) 1 // Code generated by mockery v2.33.1. DO NOT EDIT. 2 3 package mocks 4 5 import ( 6 log "github.com/goravel/framework/contracts/log" 7 mock "github.com/stretchr/testify/mock" 8 ) 9 10 // Logger is an autogenerated mock type for the Logger type 11 type Logger struct { 12 mock.Mock 13 } 14 15 // Handle provides a mock function with given fields: channel 16 func (_m *Logger) Handle(channel string) (log.Hook, error) { 17 ret := _m.Called(channel) 18 19 var r0 log.Hook 20 var r1 error 21 if rf, ok := ret.Get(0).(func(string) (log.Hook, error)); ok { 22 return rf(channel) 23 } 24 if rf, ok := ret.Get(0).(func(string) log.Hook); ok { 25 r0 = rf(channel) 26 } else { 27 if ret.Get(0) != nil { 28 r0 = ret.Get(0).(log.Hook) 29 } 30 } 31 32 if rf, ok := ret.Get(1).(func(string) error); ok { 33 r1 = rf(channel) 34 } else { 35 r1 = ret.Error(1) 36 } 37 38 return r0, r1 39 } 40 41 // NewLogger creates a new instance of Logger. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. 42 // The first argument is typically a *testing.T value. 43 func NewLogger(t interface { 44 mock.TestingT 45 Cleanup(func()) 46 }) *Logger { 47 mock := &Logger{} 48 mock.Mock.Test(t) 49 50 t.Cleanup(func() { mock.AssertExpectations(t) }) 51 52 return mock 53 }