1
0
mirror of https://github.com/gofiber/fiber.git synced 2025-02-22 23:24:32 +00:00
fiber/router_test.go
2020-02-16 18:00:14 +01:00

11 lines
156 B
Go

package fiber
import "testing"
func BenchmarkFib10(b *testing.B) {
// run the Fib function b.N times
// for n := 0; n < b.N; n++ {
// Fib(10)
// }
}