(t *testing.T)
| 523 | } |
| 524 | |
| 525 | func TestTreeCatchAllConflictRoot(t *testing.T) { |
| 526 | routes := []testRoute{ |
| 527 | {"/", false}, |
| 528 | {"/*filepath", true}, |
| 529 | } |
| 530 | testRoutes(t, routes) |
| 531 | } |
| 532 | |
| 533 | func TestTreeCatchMaxParams(t *testing.T) { |
| 534 | tree := &node{} |
nothing calls this directly
no test coverage detected