Randomizer
Randomizer returns a set of random _values in a repeatable
way, to allow re-running of tests if necessary.
This class is an internal framework class used for setting up tests.
It is used to generate random test parameters, at the time of loading
the tests. It also generates seeds for use at execution time, when
creating a RandomGenerator for use by the test.
Initial seed used to create randomizers for this run
public Randomizer()
Construct a randomizer using a random seed
Construct a randomizer using a specified seed
Create a new Randomizer using the next seed
available to ensure that each randomizer gives
a unique sequence of _values.
Get a randomizer for a particular member, returning
one that has already been created if it exists.
This ensures that the same _values are generated
each time the tests are reloaded.
Get a randomizer for a particular parameter, returning
one that has already been created if it exists.
This ensures that the same _values are generated
each time the tests are reloaded.
Return an array of random doubles between 0.0 and 1.0.
Return an array of random doubles with _values in a specified range.
Return an array of random Enums
Return an array of random ints with _values in a specified range.