8 references to DataCollectionContext
Microsoft.VisualStudio.TestPlatform.Common (2)
DataCollection\DataCollectionManager.cs (2)
171var dataCollectionContext = new DataCollectionContext(sessionId); 305sessionStartEventArgs.Context = new DataCollectionContext(_dataCollectionEnvironmentContext.SessionDataCollectionContext.SessionId);
Microsoft.VisualStudio.TestPlatform.ObjectModel (6)
DataCollector\Events\SessionEvents.cs (3)
28: this(new DataCollectionContext(new SessionId(Guid.Empty)), new Dictionary<string, object?>()) 41: this(new DataCollectionContext(new SessionId(Guid.Empty)), properties) 111public SessionEndEventArgs() : this(new DataCollectionContext(new SessionId(Guid.Empty)))
DataCollector\Events\TestCaseEvents.cs (3)
146public TestCaseStartEventArgs(TestCase testElement) : this(new DataCollectionContext(new SessionId(Guid.Empty)), testElement) 227public TestCaseEndEventArgs(TestCase testElement, TestOutcome testOutcome) : this(new DataCollectionContext(new SessionId(Guid.Empty)), testElement, testOutcome) 352: this(new DataCollectionContext(new SessionId(Guid.Empty)), testResult)