C# 클래스 Microsoft.Silverlight.Testing.Harness.TagManager

A helper class that manages tags and associated metadata. Tag expressions are evaluated at the TestClass level.
파일 보기 프로젝트 열기: garyjohnson/wpnest 1 사용 예제들

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