(val string)
| 16 | var fakeHandlerValue string |
| 17 | |
| 18 | func fakeHandler(val string) HandlersChain { |
| 19 | return HandlersChain{func(c *Context) { |
| 20 | fakeHandlerValue = val |
| 21 | }} |
| 22 | } |
| 23 | |
| 24 | type testRequests []struct { |
| 25 | path string |
no outgoing calls
no test coverage detected