(f *testing.F)
| 199 | } |
| 200 | |
| 201 | func FuzzNewAccessValidator(f *testing.F) { |
| 202 | f.Fuzz(func(t *testing.T, domain string, issuer string, applicationAUD string) { |
| 203 | ctx := context.Background() |
| 204 | _, _ = NewAccessValidator(ctx, domain, issuer, applicationAUD) |
| 205 | }) |
| 206 | } |
nothing calls this directly
no test coverage detected