Describes the outcome of a test.

Namespace:  Gallio.Model
Assembly:  Gallio (in Gallio.dll) Version: 3.4.0.0 (3.4.11.0)

Syntax

C#
[SerializableAttribute]
public struct TestOutcome : IXmlSerializable, 
	IEquatable<TestOutcome>, INormalizable<TestOutcome>
Visual Basic (Declaration)
<SerializableAttribute> _
Public Structure TestOutcome _
	Implements IXmlSerializable, IEquatable(Of TestOutcome),  _
	INormalizable(Of TestOutcome)

Remarks

An outcome consists of two parts. First, a required Status that describes whether test passed, failed or was inconclusive. Second, an optional Category that enables different outcomes with the same status to be distinguished. The category also provides an opportunity to extend the definition of a test outcome to include custom semantic details.

See Also