github.com/vnforks/kid/v5@v5.22.1-0.20200408055009-b89d99c65676/einterfaces/mocks/NotificationInterface.go (about) 1 // Code generated by mockery v1.0.0. DO NOT EDIT. 2 3 // Regenerate this file using `make einterfaces-mocks`. 4 5 package mocks 6 7 import ( 8 model "github.com/vnforks/kid/v5/model" 9 mock "github.com/stretchr/testify/mock" 10 ) 11 12 // NotificationInterface is an autogenerated mock type for the NotificationInterface type 13 type NotificationInterface struct { 14 mock.Mock 15 } 16 17 // CheckLicense provides a mock function with given fields: 18 func (_m *NotificationInterface) CheckLicense() *model.AppError { 19 ret := _m.Called() 20 21 var r0 *model.AppError 22 if rf, ok := ret.Get(0).(func() *model.AppError); ok { 23 r0 = rf() 24 } else { 25 if ret.Get(0) != nil { 26 r0 = ret.Get(0).(*model.AppError) 27 } 28 } 29 30 return r0 31 } 32 33 // GetNotificationMessage provides a mock function with given fields: ack, userId 34 func (_m *NotificationInterface) GetNotificationMessage(ack *model.PushNotificationAck, userId string) (*model.PushNotification, *model.AppError) { 35 ret := _m.Called(ack, userId) 36 37 var r0 *model.PushNotification 38 if rf, ok := ret.Get(0).(func(*model.PushNotificationAck, string) *model.PushNotification); ok { 39 r0 = rf(ack, userId) 40 } else { 41 if ret.Get(0) != nil { 42 r0 = ret.Get(0).(*model.PushNotification) 43 } 44 } 45 46 var r1 *model.AppError 47 if rf, ok := ret.Get(1).(func(*model.PushNotificationAck, string) *model.AppError); ok { 48 r1 = rf(ack, userId) 49 } else { 50 if ret.Get(1) != nil { 51 r1 = ret.Get(1).(*model.AppError) 52 } 53 } 54 55 return r0, r1 56 }