A pattern test parameter handler provides the logic that implements the various
phases of the test parameter binding lifecycle.
Namespace:
Gallio.Framework.PatternAssembly: Gallio (in Gallio.dll) Version: 3.3.0.0 (3.3.610.0)
Syntax
| C# |
|---|
public interface IPatternTestParameterHandler |
| Visual Basic (Declaration) |
|---|
Public Interface IPatternTestParameterHandler |
Remarks
Each method represents the behavior to be performed during a particular phase. Different actions are permitted during each phase. Consult the documentation the appropriate method of this interface for restrictions.
The phases generally run in the following order. Some phases may be skipped due to exceptions or if there is no work to be done.
- -- for each test instance --
- BindTestParameter(PatternTestInstanceState, Object)
- UnbindTestParameter(PatternTestInstanceState, Object)
- -- end --
