C# 클래스 Jwc.Experiment.Xunit.TestCommandContext

Represents a base class for test command context.
상속: ITestCommandContext
파일 보기 프로젝트 열기: jwChung/Experimentalism

공개 메소드들

메소드 설명
GetArguments ( ITestMethodContext context ) : IEnumerable

Gets test arguments.

GetMethodContext ( object testObject ) : ITestMethodContext

Gets information of the test method.

GetStaticMethodContext ( ) : ITestMethodContext

Gets information of the static test method.

보호된 메소드들

메소드 설명
TestCommandContext ( ISpecimenBuilderFactory factory, IEnumerable arguments ) : System

Initializes a new instance of the TestCommandContext class.

메소드 상세

GetArguments() 공개 메소드

Gets test arguments.
public GetArguments ( ITestMethodContext context ) : IEnumerable
context ITestMethodContext /// Information of the test method. ///
리턴 IEnumerable

GetMethodContext() 공개 추상적인 메소드

Gets information of the test method.
public abstract GetMethodContext ( object testObject ) : ITestMethodContext
testObject object /// The test object. ///
리턴 ITestMethodContext

GetStaticMethodContext() 공개 추상적인 메소드

Gets information of the static test method.
public abstract GetStaticMethodContext ( ) : ITestMethodContext
리턴 ITestMethodContext

TestCommandContext() 보호된 메소드

Initializes a new instance of the TestCommandContext class.
protected TestCommandContext ( ISpecimenBuilderFactory factory, IEnumerable arguments ) : System
factory ISpecimenBuilderFactory /// A factory to create test fixture. ///
arguments IEnumerable /// Explicit arguments of the test method. ///
리턴 System