Applies decorations to a method-level test.

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

Syntax

C#
protected virtual void DecorateMethodTest(
	IPatternScope methodScope,
	IMethodInfo method
)
Visual Basic (Declaration)
Protected Overridable Sub DecorateMethodTest ( _
	methodScope As IPatternScope, _
	method As IMethodInfo _
)

Parameters

methodScope
Type: Gallio.Framework.Pattern..::.IPatternScope
The method scope.
method
Type: Gallio.Common.Reflection..::.IMethodInfo
The method.

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