Mock Identity Client for testing
| 29 | |
| 30 | // Mock Identity Client for testing |
| 31 | type MockIdentityClient struct { |
| 32 | mock.Mock |
| 33 | } |
| 34 | |
| 35 | func (m *MockIdentityClient) ResolveUserDisplayName(userId string) (string, error) { |
| 36 | args := m.Called(userId) |
nothing calls this directly
no outgoing calls
no test coverage detected