C# 클래스 Xunit.PairwiseStrategy.FeatureTuple

A FeatureTuple represents a combination of features, one per test parameter, which should be covered by a test case. In the PairwiseStrategy, we are only trying to cover pairs of features, so the tuples actually may contain only single feature or pair of features, but the algorithm itself works with triplets, quadruples and so on.
파일 보기 프로젝트 열기: AArnott/Xunit.Combinatorial

공개 메소드들

메소드 설명
FeatureTuple ( FeatureInfo feature1 ) : System

Initializes a new instance of the FeatureTuple class for a single feature.

FeatureTuple ( FeatureInfo feature1, FeatureInfo feature2 ) : System

Initializes a new instance of the FeatureTuple class for a pair of features.

this ( int index ) : FeatureInfo

메소드 상세

FeatureTuple() 공개 메소드

Initializes a new instance of the FeatureTuple class for a single feature.
public FeatureTuple ( FeatureInfo feature1 ) : System
feature1 FeatureInfo Single feature.
리턴 System

FeatureTuple() 공개 메소드

Initializes a new instance of the FeatureTuple class for a pair of features.
public FeatureTuple ( FeatureInfo feature1, FeatureInfo feature2 ) : System
feature1 FeatureInfo First feature.
feature2 FeatureInfo Second feature.
리턴 System

this() 공개 메소드

public this ( int index ) : FeatureInfo
index int
리턴 FeatureInfo