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

RangeAttribute

RangeAttribute is used to supply a range of values to an individual parameter of a parameterized test.
public RangeAttribute(int from, int to)

Construct a range of ints using default step of 1

public RangeAttribute(int from, int to, int step)

Construct a range of ints specifying the step size

public RangeAttribute(long from, long to, long step)

Construct a range of longs

public RangeAttribute(double from, double to, double step)

Construct a range of doubles

public RangeAttribute(float from, float to, float step)

Construct a range of floats