Initializes a test for a type after it has been added to the test model.

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

Syntax

C#
protected virtual void InitializeTest(
	IPatternScope typeScope,
	ITypeInfo type
)
Visual Basic (Declaration)
Protected Overridable Sub InitializeTest ( _
	typeScope As IPatternScope, _
	type As ITypeInfo _
)

Parameters

typeScope
Type: Gallio.Framework.Pattern..::.IPatternScope
The type scope.
type
Type: Gallio.Common.Reflection..::.ITypeInfo
The type.

Remarks

The members of base types are processed before those of subtypes.

The default implementation processes all public members of the type including the first constructor found, then recurses to process all public and non-public nested types. Non-public members other than nested types are ignored.

See Also