Unbinds a test parameter.

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

Syntax

C#
void UnbindTestParameter(
	PatternTestInstanceState testInstanceState,
	Object value
)
Visual Basic (Declaration)
Sub UnbindTestParameter ( _
	testInstanceState As PatternTestInstanceState, _
	value As Object _
)

Parameters

testInstanceState
Type: Gallio.Framework.Pattern..::.PatternTestInstanceState
The test instance state, never null.
value
Type: System..::.Object
The value that was bound to the test parameter.

Remarks

The following actions are typically performed during this phase:

  • Releasing any resources used by the test parameter.

The following actions are forbidden during this phase because they would either go unnoticed or have undesirable side-effects upon test execution:

See Also