jldb/lib/idgen/gen_test.go

12 lines
115 B
Go
Raw Normal View History

2023-10-13 09:43:27 +00:00
package idgen
import (
"testing"
)
func BenchmarkNext(b *testing.B) {
for i := 0; i < b.N; i++ {
Next()
}
}