gf/util/guid/guid_z_bench_test.go

33 lines
655 B
Go
Raw Normal View History

// Copyright 2018 gf Author(https://github.com/gogf/gf). 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 (
"github.com/gogf/gf/util/guid"
"testing"
)
func Benchmark_S(b *testing.B) {
for i := 0; i < b.N; i++ {
guid.S()
}
}
2020-05-17 08:50:37 +08:00
func Benchmark_S_Data_1(b *testing.B) {
for i := 0; i < b.N; i++ {
2020-05-17 08:50:37 +08:00
guid.S([]byte("123"))
}
}
2020-05-17 08:50:37 +08:00
func Benchmark_S_Data_2(b *testing.B) {
for i := 0; i < b.N; i++ {
2020-05-17 08:50:37 +08:00
guid.S([]byte("123"), []byte("456"))
}
}