C# Класс PclUnit.Style.Nunit.RangeAttribute

RangeAttribute is used to supply a range of values to an individual parameter of a parameterized test.
Наследование: ValuesAttribute
Показать файл Открыть проект

Открытые методы

Метод Описание
RangeAttribute ( double from, double to, double step ) : System

Construct a range of doubles

RangeAttribute ( float from, float to, float step ) : System

Construct a range of floats

RangeAttribute ( int from, int to ) : System

Construct a range of ints using default step of 1

RangeAttribute ( int from, int to, int step ) : System

Construct a range of ints specifying the step size

RangeAttribute ( long from, long to, long step ) : System

Construct a range of longs

Описание методов

RangeAttribute() публичный Метод

Construct a range of doubles
public RangeAttribute ( double from, double to, double step ) : System
from double
to double
step double
Результат System

RangeAttribute() публичный Метод

Construct a range of floats
public RangeAttribute ( float from, float to, float step ) : System
from float
to float
step float
Результат System

RangeAttribute() публичный Метод

Construct a range of ints using default step of 1
public RangeAttribute ( int from, int to ) : System
from int
to int
Результат System

RangeAttribute() публичный Метод

Construct a range of ints specifying the step size
public RangeAttribute ( int from, int to, int step ) : System
from int
to int
step int
Результат System

RangeAttribute() публичный Метод

Construct a range of longs
public RangeAttribute ( long from, long to, long step ) : System
from long
to long
step long
Результат System