rnd_test.go 129 B

1234567891011
  1. package gocaptcha
  2. import (
  3. "testing"
  4. )
  5. func TestRandom(t *testing.T) {
  6. for i := 0; i < 100; i++ {
  7. t.Log(Random(0, 1))
  8. }
  9. }