Applies decorations to a test.

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

Syntax

C#
protected override void DecorateTest(
	IPatternScope scope,
	ICodeElementInfo codeElement
)
Visual Basic (Declaration)
Protected Overrides Sub DecorateTest ( _
	scope As IPatternScope, _
	codeElement As ICodeElementInfo _
)

Parameters

scope
Type: Gallio.Framework.Pattern..::.IPatternScope
The scope.
codeElement
Type: Gallio.Common.Reflection..::.ICodeElementInfo
The code element.

Remarks

A typical use of this method is to augment the test with additional metadata or to add additional behaviors to the test.

See Also