| 12 | type contextKey struct{} |
| 13 | |
| 14 | type fakeTokenProvider struct { |
| 15 | token string |
| 16 | err error |
| 17 | calls []fakeTokenProviderCall |
| 18 | } |
| 19 | |
| 20 | type fakeTokenProviderCall struct { |
| 21 | ctx context.Context |
nothing calls this directly
no outgoing calls
no test coverage detected