1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-19 10:26:10 -04:00
v2fly/common/dice/dice_test.go

51 lines
764 B
Go
Raw Normal View History

2018-02-24 07:57:25 -05:00
package dice_test
import (
"math/rand"
"testing"
. "github.com/v2fly/v2ray-core/v5/common/dice"
2018-02-24 07:57:25 -05:00
)
func BenchmarkRoll1(b *testing.B) {
for i := 0; i < b.N; i++ {
Roll(1)
}
}
func BenchmarkRoll20(b *testing.B) {
for i := 0; i < b.N; i++ {
Roll(20)
}
}
func BenchmarkIntn1(b *testing.B) {
for i := 0; i < b.N; i++ {
2022-08-19 08:05:50 -04:00
rand.Intn(1) //nolint:staticcheck
2018-02-24 07:57:25 -05:00
}
}
func BenchmarkIntn20(b *testing.B) {
for i := 0; i < b.N; i++ {
rand.Intn(20)
}
}
2020-11-14 00:06:07 -05:00
func BenchmarkInt63(b *testing.B) {
for i := 0; i < b.N; i++ {
2020-11-14 00:06:07 -05:00
_ = uint16(rand.Int63() >> 47)
}
}
2020-11-14 00:06:07 -05:00
func BenchmarkInt31(b *testing.B) {
for i := 0; i < b.N; i++ {
2020-11-14 00:06:07 -05:00
_ = uint16(rand.Int31() >> 15)
}
}
func BenchmarkIntn(b *testing.B) {
for i := 0; i < b.N; i++ {
_ = uint16(rand.Intn(65536))
}
}