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

RangeAttribute

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

Constructs a range of Int32 values using the default step of 1.

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

Constructs a range of Int32 values with the specified step size.

public RangeAttribute(uint from, uint to)

Constructs a range of UInt32 values using the default step of 1.

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

Constructs a range of UInt32 values with the specified step size.

public RangeAttribute(long from, long to)

Constructs a range of Int64 values using a default step of 1.

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

Constructs a range of Int64 values with the specified step size.

public RangeAttribute(ulong from, ulong to)

Constructs a range of UInt64 values using the default step of 1.

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

Constructs a range of UInt64 values with the specified step size.

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

Constructs a range of Double values with the specified step size.

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

Constructs a range of Single values with the specified step size.

Retrieves a list of arguments which can be passed to the specified parameter.