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