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