Prepares a newly created test state before its use.

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

Syntax

C#
public ActionChain<PatternTestState> BeforeTestChain { get; }
Visual Basic (Declaration)
Public ReadOnly Property BeforeTestChain As ActionChain(Of PatternTestState)

Remarks

This method runs in the TestContext of its containing test step because the test has not yet been started.

The following actions are typically performed during this phase:

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

See Also