<PackageReference Include="NUnit" Version="2.6.5" />

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 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