MockConfig is a mock implementation of the Config interface.
| 140 | |
| 141 | // MockConfig is a mock implementation of the Config interface. |
| 142 | type MockConfig struct { |
| 143 | mock.Mock |
| 144 | } |
| 145 | |
| 146 | func (m *MockConfig) GetAddr() string { |
| 147 | args := m.Called() |
nothing calls this directly
no outgoing calls
no test coverage detected