| 20 | ) |
| 21 | |
| 22 | type fakeSignedTokenProvider struct { |
| 23 | fromRequestCalls int |
| 24 | issueCalls int |
| 25 | } |
| 26 | |
| 27 | func (s *fakeSignedTokenProvider) FromRequest(_ *http.Request) (*workspaceapps.SignedToken, bool) { |
| 28 | s.fromRequestCalls++ |
nothing calls this directly
no outgoing calls
no test coverage detected