| 17 | ) |
| 18 | |
| 19 | type testOAuth2Provider struct { |
| 20 | t testing.TB |
| 21 | authOpts []oauth2.AuthCodeOption |
| 22 | } |
| 23 | |
| 24 | func (p *testOAuth2Provider) AuthCodeURL(state string, opts ...oauth2.AuthCodeOption) string { |
| 25 | assert.EqualValues(p.t, p.authOpts, opts) |
nothing calls this directly
no outgoing calls
no test coverage detected