<PackageReference Include="NUnit" Version="3.8.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(uint from, uint to)

Construct a range of unsigned ints using default step of 1

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

Construct a range of unsigned ints specifying the step size

public RangeAttribute(long from, long to)

Construct a range of longs using a default step of 1

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

Construct a range of longs

public RangeAttribute(ulong from, ulong to)

Construct a range of unsigned longs using default step of 1

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

Construct a range of unsigned longs specifying the step size

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