(uid uint, message *model.MessageExternal)
| 41 | } |
| 42 | |
| 43 | func (s *ManagerSuite) Notify(uid uint, message *model.MessageExternal) { |
| 44 | s.msgReceiver <- MessageWithUserID{ |
| 45 | Message: *message, |
| 46 | UserID: uid, |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | func (s *ManagerSuite) SetupSuite() { |
| 51 | s.tmpDir = test.NewTmpDir("gotify_managersuite") |
nothing calls this directly
no outgoing calls
no test coverage detected