(tb testing.TB, app *App)
| 880 | } |
| 881 | |
| 882 | func verifyThereAreNoRoutes(tb testing.TB, app *App) { |
| 883 | tb.Helper() |
| 884 | |
| 885 | require.Equal(tb, uint32(0), app.handlersCount) |
| 886 | verifyRouteHandlerCounts(tb, app, 0) |
| 887 | } |
| 888 | |
| 889 | func Test_App_Rebuild_Tree(t *testing.T) { |
| 890 | t.Parallel() |
no test coverage detected