C# Класс NUnit.Framework.CombiningStrategyAttribute

Наследование: NUnit.Framework.NUnitAttribute, ITestBuilder, IApplyToTest
Показать файл Открыть проект

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

Метод Описание
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