Gets information about a particular pattern test framework extension.

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

Syntax

C#
public abstract IEnumerable<PatternTestFrameworkExtensionInfo> GetExtensions(
	IAssemblyInfo assembly
)
Visual Basic (Declaration)
Public MustOverride Function GetExtensions ( _
	assembly As IAssemblyInfo _
) As IEnumerable(Of PatternTestFrameworkExtensionInfo)

Parameters

assembly
Type: Gallio.Common.Reflection..::.IAssemblyInfo
The test assembly.

Return Value

The pattern test framework extension information.

Remarks

The information will be included in the report as part of the framework node that contains the assembly.

If there are no framework extensions associated with a particular assembly then the assembly will not be explored for tests.

See Also