--------------------------------------------------------------------------- Helpers ---------------------------------------------------------------------------
()
| 12 | // --------------------------------------------------------------------------- |
| 13 | |
| 14 | func newTestRouter() *Router { return newRouter() } |
| 15 | |
| 16 | func insertRoute(r *Router, method, path string) { |
| 17 | r.Insert(method, path, []Handler{func(c *Ctx) error { return nil }}) |
no test coverage detected