Applies semantic actions to the assembly-level test to estalish its runtime behavior.

Namespace:  Gallio.Framework.Pattern
Assembly:  Gallio (in Gallio.dll) Version: 3.3.0.0 (3.3.610.0)

Syntax

C#
protected virtual void SetTestSemantics(
	ITestBuilder testBuilder,
	IAssemblyInfo assembly
)
Visual Basic (Declaration)
Protected Overridable Sub SetTestSemantics ( _
	testBuilder As ITestBuilder, _
	assembly As IAssemblyInfo _
)

Parameters

testBuilder
Type: Gallio.Framework.Pattern..::.ITestBuilder
The test builder.
assembly
Type: Gallio.Common.Reflection..::.IAssemblyInfo
The assembly.

Remarks

This method is called after InitializeAssemblyTest(IPatternScope, IAssemblyInfo).

The default behavior for a TestAssemblyPatternAttribute is to configure the test actions as follows:

You can override this method to change the semantics as required.

See Also