mirror of
https://gitee.com/johng/gf.git
synced 2024-11-29 18:57:44 +08:00
40 lines
754 B
Go
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"))
|
|
}
|
|
})
|
|
}
|