github.com/detailyang/fastrand-go@v0.0.0-20191106153122-53093851e761/fastrand_test.go (about) 1 package fastrand 2 3 import ( 4 "testing" 5 ) 6 7 func TestFastRand(t *testing.T) { 8 for i := 0; i < 1000; i++ { 9 FastRand() 10 FastRandN(1) 11 } 12 }