mirror of
https://github.com/Luzifer/password.git
synced 2024-11-08 17:30:10 +00:00
21 lines
352 B
Go
21 lines
352 B
Go
package securepassword
|
|
|
|
import "testing"
|
|
|
|
func TestRandIntn(t *testing.T) {
|
|
var (
|
|
bound = 16
|
|
sampleSize = 200000
|
|
)
|
|
|
|
for i := 0; i < sampleSize; i++ {
|
|
v, err := randIntn(bound)
|
|
if err != nil {
|
|
t.Fatalf("error in rng: %s", err)
|
|
}
|
|
|
|
if v < 0 || v >= bound {
|
|
t.Errorf("rng yielded number out-of-range 0-%d: %d", bound, v)
|
|
}
|
|
}
|
|
}
|