| 3147 | } |
| 3148 | |
| 3149 | type fakeAuthProvider struct { |
| 3150 | identifier string |
| 3151 | parseAuth func(context.Context, pluginapi.AuthParseRequest) (pluginapi.AuthParseResponse, error) |
| 3152 | startLogin func(context.Context, pluginapi.AuthLoginStartRequest) (pluginapi.AuthLoginStartResponse, error) |
| 3153 | pollLogin func(context.Context, pluginapi.AuthLoginPollRequest) (pluginapi.AuthLoginPollResponse, error) |
| 3154 | refreshAuth func(context.Context, pluginapi.AuthRefreshRequest) (pluginapi.AuthRefreshResponse, error) |
| 3155 | } |
| 3156 | |
| 3157 | func (p fakeAuthProvider) Identifier() string { |
| 3158 | return p.identifier |
nothing calls this directly
no outgoing calls
no test coverage detected