mirror of
https://gitee.com/johng/gf.git
synced 2024-12-03 12:47:50 +08:00
33 lines
655 B
Go
33 lines
655 B
Go
// 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()
|
|
}
|
|
}
|
|
|
|
func Benchmark_S_Data_1(b *testing.B) {
|
|
for i := 0; i < b.N; i++ {
|
|
guid.S([]byte("123"))
|
|
}
|
|
}
|
|
|
|
func Benchmark_S_Data_2(b *testing.B) {
|
|
for i := 0; i < b.N; i++ {
|
|
guid.S([]byte("123"), []byte("456"))
|
|
}
|
|
}
|