| 31 | ) |
| 32 | |
| 33 | type ManagerSuite struct { |
| 34 | suite.Suite |
| 35 | db *testdb.Database |
| 36 | manager *Manager |
| 37 | e *gin.Engine |
| 38 | msgReceiver chan MessageWithUserID |
| 39 | |
| 40 | tmpDir test.TmpDir |
| 41 | } |
| 42 | |
| 43 | func (s *ManagerSuite) Notify(uid uint, message *model.MessageExternal) { |
| 44 | s.msgReceiver <- MessageWithUserID{ |
nothing calls this directly
no outgoing calls
no test coverage detected