Issue #729
(t *testing.T)
| 2369 | |
| 2370 | // Issue #729 |
| 2371 | func TestRouterParamAlias(t *testing.T) { |
| 2372 | api := []testRoute{ |
| 2373 | {http.MethodGet, "/users/:userID/following", ""}, |
| 2374 | {http.MethodGet, "/users/:userID/followedBy", ""}, |
| 2375 | {http.MethodGet, "/users/:userID/follow", ""}, |
| 2376 | } |
| 2377 | testRouterAPI(t, api) |
| 2378 | } |
| 2379 | |
| 2380 | // Issue #1052 |
| 2381 | func TestRouterParamOrdering(t *testing.T) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…