次の方法で共有


IDataCollectionAwareTestAdapter インターフェイス

診断データ アダプターのイベントを発生させる機能をカスタム テスト アダプターに追加するインターフェイスを提供します。

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

構文

'宣言
Public Interface IDataCollectionAwareTestAdapter
public interface IDataCollectionAwareTestAdapter
public interface class IDataCollectionAwareTestAdapter
type IDataCollectionAwareTestAdapter =  interface end
public interface IDataCollectionAwareTestAdapter

IDataCollectionAwareTestAdapter 型で公開されるメンバーは以下のとおりです。

プロパティ

  名前 説明
パブリック プロパティ DataCollectors 診断データ アダプターのイベントを発生させることができる DataCollectorNotifications オブジェクトを取得または設定します。

このページのトップへ

このインターフェイスを実装するには、まず、派生テスト アダプターのクラス宣言にこのインターフェイスを追加します。

public class MyTestAdapter : ITestAdapter, IDataCollectionAwareTestAdapter

次に、テスト アダプターのコードで、DataCollectorNotifications オブジェクトを表す DataCollectors プロパティを作成します。

public DataCollectorNotifications DataCollectors { get; set; }

次に、このオブジェクトを使用して診断データ アダプターのイベントを発生させることができます。

DataCollectors.RaiseCustomEvent(
    new MyCustomDataEventArgs(), 
    NotificationBroadCastLevel.All);

参照

関連項目

Microsoft.VisualStudio.TestTools.Execution 名前空間

DataCollectors

ITestAdapter

DataCollector

DataCollectorNotifications

その他の技術情報

診断データ アダプターを作成してカスタム データを収集する、またはテスト コンピューターに影響を与える