(r *Router, method, path string)
| 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 }}) |
| 18 | } |
| 19 | |
| 20 | // --------------------------------------------------------------------------- |
| 21 | // Correctness — Insert + Search |
no test coverage detected