Files
gf/util/guuid/guuid_z_bench_test.go
2019-11-08 19:52:49 +08:00

57 lines
1.0 KiB
Go

// Copyright 2019 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=".*" -benchmem
package guuid_test
import (
"github.com/gogf/gf/util/guuid"
"testing"
)
func Benchmark_New(b *testing.B) {
for i := 0; i < b.N; i++ {
guuid.New()
}
}
func Benchmark_NewUUID(b *testing.B) {
for i := 0; i < b.N; i++ {
guuid.NewUUID()
}
}
func Benchmark_NewDCEGroup(b *testing.B) {
for i := 0; i < b.N; i++ {
guuid.NewDCEGroup()
}
}
func Benchmark_NewDCEPerson(b *testing.B) {
for i := 0; i < b.N; i++ {
guuid.NewDCEPerson()
}
}
func Benchmark_NewRandom(b *testing.B) {
for i := 0; i < b.N; i++ {
guuid.NewRandom()
}
}
func Benchmark_NewMD5(b *testing.B) {
for i := 0; i < b.N; i++ {
guuid.NewMD5(guuid.UUID{}, []byte(""))
}
}
func Benchmark_NewSHA1(b *testing.B) {
for i := 0; i < b.N; i++ {
guuid.NewSHA1(guuid.UUID{}, []byte(""))
}
}