Sdílet prostřednictvím


PreWebTestEventArgs.WebTest – vlastnost

Získává WebTest objekt, který je spuštění a způsobila PreWebTest událostí.

Obor názvů:  Microsoft.VisualStudio.TestTools.WebTesting
Sestavení:  Microsoft.VisualStudio.QualityTools.WebTestFramework (v Microsoft.VisualStudio.QualityTools.WebTestFramework.dll)

Syntaxe

'Deklarace
Public ReadOnly Property WebTest As WebTest
public WebTest WebTest { get; }
public:
property WebTest^ WebTest {
    WebTest^ get ();
}
member WebTest : WebTest with get
function get WebTest () : WebTest

Hodnota vlastnosti

Typ: Microsoft.VisualStudio.TestTools.WebTesting.WebTest
Objekt WebTest.

Příklady

Následující příklad zobrazuje webové test výkonnosti plug-in, před spuštěním testu výkonu webové přidá náhodné číslo kontextu.Po spuštění testu výkonu webového modulu plug-in zobrazuje délku poslední WebTestResponse.

Všimněte si, jak tato vlastnost poskytuje odkaz na WebTest.

using System;
using Microsoft.VisualStudio.TestTools.WebTesting;
using System.Windows.Forms;

namespace WebTestPluginNamespace
{
    public class MyWebTestPlugin : WebTestPlugin
    {
        public static string NewRandomNumberString(int size)
        {
            byte[] buffer = new byte[size];
            // Seed using system time
            Random random = new Random(unchecked((int)DateTime.Now.Ticks));

            random.NextBytes(buffer);
            return BitConverter.ToInt32(buffer, 0).ToString();
        }

        public override void PreWebTest(object sender, PreWebTestEventArgs e)
        {
            e.WebTest.Context["RandNum"] = NewRandomNumberString(4);
        }
        public override void PostWebTest(object sender, PostWebTestEventArgs e)
        {
            MessageBox.Show(e.WebTest.LastResponse.ContentLength.ToString());
        }
    }
}

Zabezpečení rozhraní .NET Framework

Viz také

Referenční dokumentace

PreWebTestEventArgs Třída

Microsoft.VisualStudio.TestTools.WebTesting – obor názvů