Method | Description | |
---|---|---|
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. |
Method | Description | |
---|---|---|
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. |
public Build ( IMemberBuildContext context ) : bool | ||
context | IMemberBuildContext | The build context of the test method member. |
return | bool |
protected abstract BuildMember ( IMemberBuildContext context ) : bool | ||
context | IMemberBuildContext | The build context of the test method member. |
return | bool |
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. |
return | string |
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. |
return | string |
protected MemberBuilder ( IMemberSetupContext context ) : NStub.Core | ||
context | IMemberSetupContext | The build context of the test method member. |
return | NStub.Core |
protected PreBuild ( IMemberPreBuildContext context ) : void | ||
context | IMemberPreBuildContext | The build context of the test method member. |
return | void |
public RunPreBuild ( IMemberPreBuildContext context ) : void | ||
context | IMemberPreBuildContext | The build context of the test method member. |
return | void |