go test -run=^$ -bench=Benchmark_Startup_Process -benchmem -count=9
(b *testing.B)
| 1627 | |
| 1628 | // go test -run=^$ -bench=Benchmark_Startup_Process -benchmem -count=9 |
| 1629 | func Benchmark_Startup_Process(b *testing.B) { |
| 1630 | for b.Loop() { |
| 1631 | app := New() |
| 1632 | registerDummyRoutes(app) |
| 1633 | app.startupProcess() |
| 1634 | } |
| 1635 | } |
| 1636 | |
| 1637 | // go test -v ./... -run=^$ -bench=Benchmark_Router_Next -benchmem -count=4 |
| 1638 | func Benchmark_Router_Next(b *testing.B) { |
nothing calls this directly
no test coverage detected