C# 클래스 NStub.CSharp.ObjectGeneration.Builders.MemberBuilder

Base class for a test method processing class.
상속: IMemberBuilder
파일 보기 프로젝트 열기: Jedzia/NStub

공개 메소드들

메소드 설명
Build ( IMemberBuildContext context ) : bool

Builds the specified context.

GetTestName ( IMemberBuildContext context, string originalName ) : string

Determines the name of the test method.

RunPreBuild ( IMemberPreBuildContext context ) : void

Runs before anything else on the test method.

The builders are called one after one, so an integral name resolution happens.

보호된 메소드들

메소드 설명
BuildMember ( IMemberBuildContext context ) : bool

Builds the test method member with the specified context.

DetermineTestName ( IMemberSetupContext context, string originalName ) : string

Determines the name of the test method.

The builders are called one after one, so an integral name resolution happens.

MemberBuilder ( IMemberSetupContext context ) : NStub.Core

Initializes a new instance of the MemberBuilder class.

PreBuild ( IMemberPreBuildContext context ) : void

Runs before anything else on the test method.

The builders are called one after one, so an integral name resolution happens.

메소드 상세

Build() 공개 메소드

Builds the specified context.
public Build ( IMemberBuildContext context ) : bool
context IMemberBuildContext The build context of the test method member.
리턴 bool

BuildMember() 보호된 추상적인 메소드

Builds the test method member with the specified context.
protected abstract BuildMember ( IMemberBuildContext context ) : bool
context IMemberBuildContext The build context of the test method member.
리턴 bool

DetermineTestName() 보호된 메소드

Determines the name of the test method.
The builders are called one after one, so an integral name resolution happens.
protected DetermineTestName ( IMemberSetupContext context, string originalName ) : string
context IMemberSetupContext The build context of the test method member.
originalName string The initial name of the test method member.
리턴 string

GetTestName() 공개 메소드

Determines the name of the test method.
public GetTestName ( IMemberBuildContext context, string originalName ) : string
context IMemberBuildContext The build context of the test method member.
originalName string The initial name of the test method member.
리턴 string

MemberBuilder() 보호된 메소드

Initializes a new instance of the MemberBuilder class.
protected MemberBuilder ( IMemberSetupContext context ) : NStub.Core
context IMemberSetupContext The build context of the test method member.
리턴 NStub.Core

PreBuild() 보호된 메소드

Runs before anything else on the test method.
The builders are called one after one, so an integral name resolution happens.
protected PreBuild ( IMemberPreBuildContext context ) : void
context IMemberPreBuildContext The build context of the test method member.
리턴 void

RunPreBuild() 공개 메소드

Runs before anything else on the test method.
The builders are called one after one, so an integral name resolution happens.
public RunPreBuild ( IMemberPreBuildContext context ) : void
context IMemberPreBuildContext The build context of the test method member.
리턴 void