(value T, err error)
| 923 | } |
| 924 | |
| 925 | func must[T any](value T, err error) T { |
| 926 | if err != nil { |
| 927 | panic(err) |
| 928 | } |
| 929 | return value |
| 930 | } |
| 931 | |
| 932 | // TestOAuth2ProviderResourceIndicators tests RFC 8707 Resource Indicators support |
| 933 | // including resource parameter validation in authorization and token exchange flows. |
no outgoing calls
no test coverage detected