C# 클래스 NUnit.Framework.CombiningStrategyAttribute

상속: NUnit.Framework.NUnitAttribute, ITestBuilder, IApplyToTest
파일 보기 프로젝트 열기: nunit/nunit

공개 메소드들

메소드 설명
ApplyToTest ( System.Test test ) : void

Modify the test by adding the name of the combining strategy to the properties.

BuildFrom ( IMethodInfo method, System.Test suite ) : IEnumerable

Construct one or more TestMethods from a given MethodInfo, using available parameter data.

보호된 메소드들

메소드 설명
CombiningStrategyAttribute ( ICombiningStrategy strategy, IParameterDataProvider provider ) : System

Construct a CombiningStrategyAttribute incorporating an ICombiningStrategy and an IParameterDataProvider.

CombiningStrategyAttribute ( object strategy, object provider ) : System

Construct a CombiningStrategyAttribute incorporating an object that implements ICombiningStrategy and an IParameterDataProvider. This constructor is provided for CLS compliance.

메소드 상세

ApplyToTest() 공개 메소드

Modify the test by adding the name of the combining strategy to the properties.
public ApplyToTest ( System.Test test ) : void
test System.Test The test to modify
리턴 void

BuildFrom() 공개 메소드

Construct one or more TestMethods from a given MethodInfo, using available parameter data.
public BuildFrom ( IMethodInfo method, System.Test suite ) : IEnumerable
method IMethodInfo The MethodInfo for which tests are to be constructed.
suite System.Test The suite to which the tests will be added.
리턴 IEnumerable

CombiningStrategyAttribute() 보호된 메소드

Construct a CombiningStrategyAttribute incorporating an ICombiningStrategy and an IParameterDataProvider.
protected CombiningStrategyAttribute ( ICombiningStrategy strategy, IParameterDataProvider provider ) : System
strategy ICombiningStrategy Combining strategy to be used in combining data
provider IParameterDataProvider An IParameterDataProvider to supply data
리턴 System

CombiningStrategyAttribute() 보호된 메소드

Construct a CombiningStrategyAttribute incorporating an object that implements ICombiningStrategy and an IParameterDataProvider. This constructor is provided for CLS compliance.
protected CombiningStrategyAttribute ( object strategy, object provider ) : System
strategy object Combining strategy to be used in combining data
provider object An IParameterDataProvider to supply data
리턴 System