()
| 48 | } |
| 49 | |
| 50 | func (s *UserTestSuite) assertSQLMockExpectations() { |
| 51 | err := s.Fixtures.SQLMock.ExpectationsWereMet() |
| 52 | if err != nil { |
| 53 | s.FailNow(fmt.Sprintf("failed to meet sqlmock expectations, got error: %v", err)) |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | func (s *UserTestSuite) TearDownTest() { |
| 58 | watcher.CloseWatcher() |
no outgoing calls
no test coverage detected