(t *testing.T)
| 168 | } |
| 169 | |
| 170 | func TestRouterGroupPipeline(t *testing.T) { |
| 171 | router := New() |
| 172 | testRoutesInterface(t, router) |
| 173 | |
| 174 | v1 := router.Group("/v1") |
| 175 | testRoutesInterface(t, v1) |
| 176 | } |
| 177 | |
| 178 | func testRoutesInterface(t *testing.T, r IRoutes) { |
| 179 | handler := func(c *Context) {} |
nothing calls this directly
no test coverage detected