8 references to SessionId
Microsoft.VisualStudio.TestPlatform.Common (1)
DataCollection\DataCollectionManager.cs (1)
170var sessionId = new SessionId(Guid.NewGuid());
Microsoft.VisualStudio.TestPlatform.ObjectModel (7)
DataCollector\Common\Session.cs (1)
26public static SessionId Empty { get; } = new SessionId(Guid.Empty);
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)