1 instantiation of DataCollectionTestCaseEventSender
Microsoft.TestPlatform.CommunicationUtilities (1)
DataCollectionTestCaseEventSender.cs (1)
61Instance ??= new DataCollectionTestCaseEventSender();
15 references to DataCollectionTestCaseEventSender
Microsoft.TestPlatform.CommunicationUtilities (5)
DataCollectionTestCaseEventSender.cs (5)
27/// Initializes a new instance of the <see cref="DataCollectionTestCaseEventSender"/> class. 35/// Initializes a new instance of the <see cref="DataCollectionTestCaseEventSender"/> class. 49public static DataCollectionTestCaseEventSender? Instance { get; private set; } 54/// <returns>A singleton instance of <see cref="DataCollectionTestCaseEventSender"/></returns> 55public static DataCollectionTestCaseEventSender Create()
Microsoft.TestPlatform.CrossPlatEngine (7)
Client\MTP\MtpDataCollectionForwarder.cs (4)
22/// dials in via <see cref="DataCollectionTestCaseEventSender"/> and pushes 31/// This class closes that gap. It reuses the very same <see cref="DataCollectionTestCaseEventSender"/>, 40private readonly DataCollectionTestCaseEventSender _sender; 55_sender = DataCollectionTestCaseEventSender.Create();
EventHandlers\TestRequestHandler.cs (1)
602if ((XmlRunSettingsUtilities.IsDataCollectionEnabled(runSettings) && DataCollectionTestCaseEventSender.Instance != null)
Execution\ExecutionManager.cs (2)
222if (DataCollectionTestCaseEventSender.Instance != null && XmlRunSettingsUtilities.IsDataCollectionEnabled(runSettings)) 225_ = new ProxyOutOfProcDataCollectionManager(DataCollectionTestCaseEventSender.Instance, testEventsPublisher);
testhost (1)
src\vstest\src\testhost.x86\DefaultEngineInvoker.cs (1)
75public DefaultEngineInvoker() : this(new TestRequestHandler(), DataCollectionTestCaseEventSender.Create(), new ProcessHelper())
testhost.arm64 (1)
src\vstest\src\testhost.x86\DefaultEngineInvoker.cs (1)
75public DefaultEngineInvoker() : this(new TestRequestHandler(), DataCollectionTestCaseEventSender.Create(), new ProcessHelper())
testhost.x86 (1)
DefaultEngineInvoker.cs (1)
75public DefaultEngineInvoker() : this(new TestRequestHandler(), DataCollectionTestCaseEventSender.Create(), new ProcessHelper())