(opts ...Opt)
| 29 | } |
| 30 | |
| 31 | func withTestProviderRegistry(opts ...Opt) []Opt { |
| 32 | return append([]Opt{ |
| 33 | WithProviderRegistry(providerdefaults.NewDefaultRegistry()), |
| 34 | WithToolsetRegistry(testToolsetRegistry()), |
| 35 | }, opts...) |
| 36 | } |
| 37 | |
| 38 | func collectExamples(t *testing.T) []string { |
| 39 | t.Helper() |
no test coverage detected