C# Класс Microsoft.Silverlight.Testing.Harness.TagManager

A helper class that manages tags and associated metadata. Tag expressions are evaluated at the TestClass level.
Показать файл Открыть проект Примеры использования класса

Private Properties

Свойство Тип Описание
CreateClassTags void
CreateMethodTags void

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

Метод Описание
EvaluateExpression ( string tagExpression ) : IEnumerable

Get the test methods that correspond to a tag expression.

TagManager ( Type test, IEnumerable methods ) : System

Initializes a new tag manager.

Приватные методы

Метод Описание
CreateClassTags ( Type test ) : void

Reflect, read and prepare the tags for the class metadata. Performs the work if this is the first time the metadata has been seen.

CreateMethodTags ( ITestMethod method ) : void

Reflect, read and prepare the tags for the method metadata. Performs the work if this is the first time the metadata has been seen.

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

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

Get the test methods that correspond to a tag expression.
public EvaluateExpression ( string tagExpression ) : IEnumerable
tagExpression string Tag expression.
Результат IEnumerable

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

Initializes a new tag manager.
public TagManager ( Type test, IEnumerable methods ) : System
test System.Type The test class type.
methods IEnumerable The set of methods to run.
Результат System