WebTest.Outcome Property

Gets or sets the Pass or Fail outcome of the Web performance test.

Namespace:  Microsoft.VisualStudio.TestTools.WebTesting
Assembly:  Microsoft.VisualStudio.QualityTools.WebTestFramework (in Microsoft.VisualStudio.QualityTools.WebTestFramework.dll)

Syntax

'Declaration
Public Property Outcome As Outcome
public Outcome Outcome { get; set; }
public:
property Outcome Outcome {
    Outcome get ();
    void set (Outcome value);
}
member Outcome : Outcome with get, set
function get Outcome () : Outcome
function set Outcome (value : Outcome)

Property Value

Type: Microsoft.VisualStudio.TestTools.WebTesting.Outcome
The outcome of the Web performance test.

Remarks

The primary reason to set WebTest.Outcome is to ignore an expected failure so that the WebTest is marked as Passed despite the expected failure.

Because the Web performance test runtime engine also sets the Outcome property of WebTest, the final value of the Outcome property might not be the same as the value that your code sets.

If you set the value of WebTest.Outcome to Fail, the Web performance test runtime engine will not override that setting, and the Web performance test will be marked as Failed when it is completed. However, if you set WebTest.Outcome to Pass in the middle of a Web performance test, before all Web performance test requests have been issued and validation rules have been invoked, the Web performance test runtime engine overrides the value and sets WebTest.Outcome to Fail if there is an error after you set the value to Pass.

To guarantee that the final value for WebTest.Outcome is Pass, set it in the PostWebTest event handler.

.NET Framework Security

See Also

Reference

WebTest Class

Microsoft.VisualStudio.TestTools.WebTesting Namespace