MockIMDatabase simulates the behavior of a real IMDatabase.
| 8 | |
| 9 | // MockIMDatabase simulates the behavior of a real IMDatabase. |
| 10 | type MockIMDatabase struct { |
| 11 | mock.Mock |
| 12 | } |
| 13 | |
| 14 | func (m *MockIMDatabase) GetEngineType() string { |
| 15 | args := m.Called() |
nothing calls this directly
no outgoing calls
no test coverage detected