NUnit.Framework.RangeAttribute
Supplies a range of values to an individual parameter of a parameterized test.
namespace NUnit.Framework
{
public class RangeAttribute : NUnitAttribute, IParameterDataSource
{
public RangeAttribute(int from, int to);
public RangeAttribute(int from, int to, int step);
public RangeAttribute(uint from, uint to);
public RangeAttribute(uint from, uint to, uint step);
public RangeAttribute(long from, long to);
public RangeAttribute(long from, long to, long step);
public RangeAttribute(ulong from, ulong to);
public RangeAttribute(ulong from, ulong to, ulong step);
public RangeAttribute(double from, double to, double step);
public RangeAttribute(float from, float to, float step);
public IEnumerable GetData(IParameterInfo parameter);
}
}