5 writes to Id
Microsoft.TestPlatform.CommunicationUtilities (2)
Serialization\TestCaseConverter.cs (1)
75testCase.Id = GuidPolyfill.Parse(propertyData!, CultureInfo.InvariantCulture);
Serialization\TestCaseConverterV2.cs (1)
36testCase.Id = GuidPolyfill.Parse(id.GetString()!, CultureInfo.InvariantCulture);
Microsoft.VisualStudio.TestPlatform.ObjectModel (3)
TestCase.cs (3)
267Id = guid; 271Id = GuidPolyfill.Parse(guidString, CultureInfo.InvariantCulture); 275Id = Guid.Empty;
18 references to Id
Microsoft.TestPlatform.CommunicationUtilities (2)
Serialization\TestCaseConverter.cs (1)
145writer.WriteStringValue(value.Id.ToString());
Serialization\TestCaseConverterV2.cs (1)
79writer.WriteString("Id", value.Id.ToString());
Microsoft.TestPlatform.CrossPlatEngine (9)
Adapter\TestExecutionRecorder.cs (4)
79if (!_testCaseInProgressMap.Contains(testCase.Id)) 81_testCaseInProgressMap.Add(testCase.Id); 133if (_testCaseInProgressMap.Contains(testCase.Id)) 139_testCaseInProgressMap.Remove(testCase.Id);
DataCollection\InProcDataCollectionExtensionManager.cs (1)
298var dataCollectionData = ((InProcDataCollectionSink)_inProcDataCollectionSink).GetDataCollectionDataSetForTestCase(testResult.TestCase.Id);
DataCollection\InProcDataCollectionSink.cs (2)
29ValidateArg.NotNullOrEmpty(dataCollectionContext?.TestCase?.Id.ToString(), "dataCollectionContext.TestCase.Id"); 31var testCaseId = dataCollectionContext!.TestCase!.Id;
Execution\TestRunCache.cs (2)
255var inProgressTest = _inProgressTests.FirstOrDefault(inProgress => inProgress.Id == completedTest.Id);
Microsoft.TestPlatform.Extensions.BlameDataCollector (2)
BlameCollector.cs (1)
488_testObjectDictionary[e.TestElement.Id].IsCompleted = true;
BlameTestObject.cs (1)
49Id = testCase.Id;
Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger (1)
HtmlLogger.cs (1)
202TestResultId = e.Result.TestCase.Id,
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (1)
Utility\Converter.cs (1)
306testId = rockSteadyTestCase.Id;
Microsoft.VisualStudio.TestPlatform.ObjectModel (3)
DataCollector\DataCollectionContext.cs (1)
72: this(sessionId, new TestExecId(testCase.Id))
DataCollector\Events\TestCaseEvents.cs (1)
79TestCaseId = testElement.Id;
TestCase.cs (1)
232"TestCase.Id" => Id,