gf/util/guid/guid_z_bench_test.go
2021-11-13 23:30:31 +08:00

40 lines
754 B
Go

// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
// go test *.go -bench=".*"
package guid_test
import (
"testing"
"github.com/gogf/gf/v2/util/guid"
)
func Benchmark_S(b *testing.B) {
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
guid.S()
}
})
}
func Benchmark_S_Data_1(b *testing.B) {
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
guid.S([]byte("123"))
}
})
}
func Benchmark_S_Data_2(b *testing.B) {
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
guid.S([]byte("123"), []byte("456"))
}
})
}