(B *testing.B)
| 94 | } |
| 95 | |
| 96 | func BenchmarkManyRoutesLast(B *testing.B) { |
| 97 | router := New() |
| 98 | router.Any("/ping", func(c *Context) {}) |
| 99 | runRequest(B, router, "OPTIONS", "/ping") |
| 100 | } |
| 101 | |
| 102 | func Benchmark404(B *testing.B) { |
| 103 | router := New() |
nothing calls this directly
no test coverage detected