Class RangeAttribute
RangeAttribute is used to supply a range of _values to an individual parameter of a parameterized test.
public class RangeAttribute : ValuesAttribute, IParameterDataSource
- Inheritance
-
RangeAttribute
- Implements
- Inherited Members
Constructors
RangeAttribute(double, double, double)
Construct a range of doubles
public RangeAttribute(double from, double to, double step)
Parameters
RangeAttribute(int, int)
Construct a range of ints using default step of 1
public RangeAttribute(int from, int to)
Parameters
RangeAttribute(int, int, int)
Construct a range of ints specifying the step size
public RangeAttribute(int from, int to, int step)
Parameters
RangeAttribute(long, long)
Construct a range of longs using a default step of 1
public RangeAttribute(long from, long to)
Parameters
RangeAttribute(long, long, long)
Construct a range of longs
public RangeAttribute(long from, long to, long step)
Parameters
RangeAttribute(float, float, float)
Construct a range of floats
public RangeAttribute(float from, float to, float step)
Parameters
RangeAttribute(uint, uint)
Construct a range of unsigned ints using default step of 1
[CLSCompliant(false)]
public RangeAttribute(uint from, uint to)
Parameters
RangeAttribute(uint, uint, uint)
Construct a range of unsigned ints specifying the step size
[CLSCompliant(false)]
public RangeAttribute(uint from, uint to, uint step)
Parameters
RangeAttribute(ulong, ulong)
Construct a range of unsigned longs using default step of 1
[CLSCompliant(false)]
public RangeAttribute(ulong from, ulong to)
Parameters
RangeAttribute(ulong, ulong, ulong)
Construct a range of unsigned longs specifying the step size
[CLSCompliant(false)]
public RangeAttribute(ulong from, ulong to, ulong step)