次の方法で共有


TestStartingEventArgs.TestContextProperties プロパティ

ロード テストの各テストに使用できるデータを含む IDictionary<TKey, TValue> を取得します。

名前空間:  Microsoft.VisualStudio.TestTools.LoadTesting
アセンブリ:  Microsoft.VisualStudio.QualityTools.LoadTestFramework (Microsoft.VisualStudio.QualityTools.LoadTestFramework.dll 内)

構文

'宣言
Public ReadOnly Property TestContextProperties As IDictionary(Of String, Object)
    Get
public IDictionary<string, Object> TestContextProperties { get; }
public:
property IDictionary<String^, Object^>^ TestContextProperties {
    IDictionary<String^, Object^>^ get ();
}
member TestContextProperties : IDictionary<string, Object>
function get TestContextProperties () : IDictionary<String, Object>

プロパティ値

型: System.Collections.Generic.IDictionary<String, Object>
IDictionary<TKey, TValue>

解説

TestContextProperties は、ロード テストに含まれる各テストにデータを渡すためにロード テストのプラグイン実装で使用されます。 このようなプロパティは、単体テストの TestContext オブジェクト、および Web テストの WebTestContext から使用できます。

TestStarting イベント発生時の TestContextProperties は空です。 TestStarting イベントのイベント ハンドラーの TestContextProperties から提供された IDictionary<TKey, TValue> オブジェクトにデータを追加した後に、ロード テスト エンジンによって TestContextProperties の内容がテスト コンテキストに追加されます。

.NET Framework セキュリティ

  • 直前の呼び出し元に対する完全な信頼。 このメンバーは、部分的に信頼されているコードから使用することはできません。 詳細については、「部分信頼コードからのライブラリの使用」を参照してください。

参照

参照

TestStartingEventArgs クラス

Microsoft.VisualStudio.TestTools.LoadTesting 名前空間

その他の技術情報

方法 : ロード テスト プラグインを作成する

Web テストでのデータ バインディングの概要