<PackageReference Include="NUnit" Version="3.0.0-alpha-3" />

RandomAttribute

RandomAttribute is used to supply a set of random _values to a single parameter of a parameterized test.
public RandomAttribute(int count)

Construct a set of Enums if the type is an Enum otherwise Construct a set of doubles from 0.0 to 1.0, specifying only the count.

public RandomAttribute(double min, double max, int count)

Construct a set of doubles from min to max

public RandomAttribute(int min, int max, int count)

Construct a set of ints from min to max

public IEnumerable GetData(ParameterInfo parameter)

Get the collection of _values to be used as arguments