Classe PreWebTestEventArgs
Fornece dados para o PreWebTest evento.
Namespace: Microsoft.VisualStudio.TestTools.WebTesting
Assembly: Microsoft.VisualStudio.QualityTools.WebTestFramework (em Microsoft.VisualStudio.QualityTools.WebTestFramework.dll)
Sintaxe
Public Class PreWebTestEventArgs _
Inherits EventArgs
Dim instance As PreWebTestEventArgs
public class PreWebTestEventArgs : EventArgs
public ref class PreWebTestEventArgs : public EventArgs
public class PreWebTestEventArgs extends EventArgs
Comentários
Isso fornece uma referência à especificamenteWebTest que invocou o PreWebTest evento.
Exemplos
O exemplo a seguir mostra um plug-in de teste da Web que adiciona um número aleatório para o contexto antes de é executado o teste da Web.Depois que tiver executado o teste da Web, o plug-in exibe o tamanho do último WebTestResponse.
Observe o uso do PreWebTestEventArgs no fornecimento de uma referência para o 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, PreWebTestEventArgse)
{
e.WebTest.Context["RandNum"] = NewRandomNumberString(4);
}
public override void PostWebTest(object sender, PostWebTestEventArgs e)
{
MessageBox.Show(e.WebTest.LastResponse.ContentLength.ToString());
}
}
}
Hierarquia de herança
System.Object
System.EventArgs
Microsoft.VisualStudio.TestTools.WebTesting.PreWebTestEventArgs
Acesso thread-safe
Quaisquer membros static (Shared no Visual Basic) públicos deste tipo são thread-safe. Não há garantia de que qualquer membro de instância seja thread-safe.
Consulte também
Referência
Namespace Microsoft.VisualStudio.TestTools.WebTesting