oracleNewRNG returns a seeded RNG. Distinct name from property_test.go's newRNG so the two files can evolve independently without collision.
(seed int64)
| 117 | // oracleNewRNG returns a seeded RNG. Distinct name from property_test.go's |
| 118 | // newRNG so the two files can evolve independently without collision. |
| 119 | func oracleNewRNG(seed int64) *mathrand.Rand { |
| 120 | return mathrand.New(mathrand.NewSource(seed)) |
| 121 | } |
| 122 | |
| 123 | // --------------------------------------------------------------------------- |
| 124 | // Independent random JSON value generators (richer than property_test.go's) |
no outgoing calls
no test coverage detected