Classe PostWebTestEventArgs
Fornece dados para o PostWebTest evento.
Namespace: Microsoft.VisualStudio.TestTools.WebTesting
Assembly: Microsoft.VisualStudio.QualityTools.WebTestFramework (em Microsoft.VisualStudio.QualityTools.WebTestFramework.dll)
Sintaxe
Public Class PostWebTestEventArgs _
Inherits EventArgs
Dim instance As PostWebTestEventArgs
public class PostWebTestEventArgs : EventArgs
public ref class PostWebTestEventArgs : public EventArgs
public class PostWebTestEventArgs extends EventArgs
Comentários
Isso fornece uma referência à especificamenteWebTest que invocou o PostWebTest evento.
Exemplos
O exemplo a seguir mostra um teste da Web plug-in que adiciona um número aleatório ao contexto antes do teste da Web é executado e exibe o tamanho do último WebTestResponse após execução do teste da Web.
Observe o uso do PostWebTestEventArgs 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, PreWebTestEventArgs e)
{
e.WebTest.Context["RandNum"] = NewRandomNumberString(4);
}
public override void PostWebTest(object sender, PostWebTestEventArgse)
{
MessageBox.Show(e.WebTest.LastResponse.ContentLength.ToString());
}
}
}
Hierarquia de herança
System.Object
System.EventArgs
Microsoft.VisualStudio.TestTools.WebTesting.PostWebTestEventArgs
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