mirror of
https://github.com/gofiber/fiber.git
synced 2025-02-22 23:24:32 +00:00
11 lines
156 B
Go
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)
|
|
// }
|
|
}
|