(val string)
| 27 | var fakeHandlerValue string |
| 28 | |
| 29 | func fakeHandler(val string) Handle { |
| 30 | return func(http.ResponseWriter, *http.Request, Params) { |
| 31 | fakeHandlerValue = val |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | type testRequests []struct { |
| 36 | path string |
no outgoing calls
no test coverage detected