(fr filters.Registry, doc string, flags Flags, pr ...PriorityRoute)
| 251 | } |
| 252 | |
| 253 | func newTestProxyWithFilters(fr filters.Registry, doc string, flags Flags, pr ...PriorityRoute) (*testProxy, error) { |
| 254 | return newTestProxyWithFiltersAndParams(fr, doc, Params{Flags: flags, PriorityRoutes: pr}, nil) |
| 255 | } |
| 256 | |
| 257 | func newTestProxyWithFiltersAndPreProcessors(fr filters.Registry, doc string, flags Flags, preprocs []routing.PreProcessor) (*testProxy, error) { |
| 258 | return newTestProxyWithFiltersAndParams(fr, doc, Params{Flags: flags}, preprocs) |
no test coverage detected
searching dependent graphs…