mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
27 lines
425 B
Go
27 lines
425 B
Go
package benchmark
|
|
|
|
import (
|
|
"flag"
|
|
"math/rand"
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestBenchmark(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Benchmark Suite")
|
|
}
|
|
|
|
var size int // file size in MB, will be read from flags
|
|
|
|
func init() {
|
|
flag.IntVar(&size, "size", 50, "data length (in MB)")
|
|
}
|
|
|
|
var _ = BeforeSuite(func() {
|
|
rand.Seed(GinkgoRandomSeed())
|
|
|
|
flag.Parse()
|
|
})
|