mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
421 B
33 lines
421 B
7 years ago
|
package dice_test
|
||
|
|
||
|
import (
|
||
|
"math/rand"
|
||
|
"testing"
|
||
|
|
||
|
. "v2ray.com/core/common/dice"
|
||
|
)
|
||
|
|
||
|
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++ {
|
||
|
rand.Intn(1)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func BenchmarkIntn20(b *testing.B) {
|
||
|
for i := 0; i < b.N; i++ {
|
||
|
rand.Intn(20)
|
||
|
}
|
||
|
}
|