(t *testing.T)
| 531 | } |
| 532 | |
| 533 | func TestTreeCatchMaxParams(t *testing.T) { |
| 534 | tree := &node{} |
| 535 | route := "/cmd/*filepath" |
| 536 | tree.addRoute(route, fakeHandler(route)) |
| 537 | } |
| 538 | |
| 539 | func TestTreeDoubleWildcard(t *testing.T) { |
| 540 | const panicMsg = "only one wildcard per path segment is allowed" |
nothing calls this directly
no test coverage detected