C# 클래스 PclUnit.Style.Nunit.RangeAttribute

RangeAttribute is used to supply a range of values to an individual parameter of a parameterized test.
상속: ValuesAttribute
파일 보기 프로젝트 열기: jbtule/PclUnit

공개 메소드들

메소드 설명
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