Gets or sets a number that defines an ordering for the test with respect to its siblings.

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

Syntax

C#
public int Order { get; set; }
Visual Basic (Declaration)
Public Property Order As Integer

Field Value

The test execution order with respect to siblings, initially zero.

Remarks

Unless compelled otherwise by test dependencies, tests with a lower order number than their siblings will run before those siblings and tests with the same order number as their siblings with run in an arbitrary sequence with respect to those siblings.

See Also