1 instantiation of DataCollectionTestCaseEventSender
Microsoft.TestPlatform.CommunicationUtilities (1)
DataCollectionTestCaseEventSender.cs (1)
56Instance ??= new DataCollectionTestCaseEventSender();
11 references to DataCollectionTestCaseEventSender
Microsoft.TestPlatform.CommunicationUtilities (5)
DataCollectionTestCaseEventSender.cs (5)
22/// Initializes a new instance of the <see cref="DataCollectionTestCaseEventSender"/> class. 30/// Initializes a new instance of the <see cref="DataCollectionTestCaseEventSender"/> class. 44public static DataCollectionTestCaseEventSender? Instance { get; private set; } 49/// <returns>A singleton instance of <see cref="DataCollectionTestCaseEventSender"/></returns> 50public static DataCollectionTestCaseEventSender Create()
Microsoft.TestPlatform.CrossPlatEngine (3)
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())