1 write to Id
Microsoft.VisualStudio.TestPlatform.ObjectModel (1)
TestProperty\TestProperty.cs (1)
75Id = id;
30 references to Id
Microsoft.TestPlatform.CommunicationUtilities (7)
Serialization\TestCaseConverter.cs (2)
72switch (testProperty.Id) 91testProperty = TestProperty.Register(testProperty.Id, testProperty.Label, testProperty.GetValueType(), testProperty.Attributes, typeof(TestObject));
Serialization\TestCaseConverterV2.cs (1)
67testProperty = TestProperty.Register(testProperty.Id, testProperty.Label, testProperty.GetValueType(), testProperty.Attributes, typeof(TestObject));
Serialization\TestPropertyConverter.cs (1)
74writer.WriteString("Id", value.Id);
Serialization\TestResultConverter.cs (2)
83switch (testProperty.Id) 103testProperty = TestProperty.Register(testProperty.Id, testProperty.Label, testProperty.GetValueType(), testProperty.Attributes, typeof(TestObject));
Serialization\TestResultConverterV2.cs (1)
96testProperty = TestProperty.Register(testProperty.Id, testProperty.Label, testProperty.GetValueType(), testProperty.Attributes, typeof(TestObject));
Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger (2)
HtmlLogger.cs (2)
387property.Id.Equals(HtmlLoggerConstants.ParentExecutionIdPropertyIdentifier)); 401property.Id.Equals(HtmlLoggerConstants.ExecutionIdPropertyIdentifier));
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (5)
Utility\Converter.cs (5)
276var customProperty = testCase.Properties.FirstOrDefault(t => t.Id.Equals(categoryId)); 299property => property.Id.Equals(Constants.TmiTestIdPropertyIdentifier)); 320property => property.Id.Equals(Constants.ParentExecutionIdPropertyIdentifier)); 335property => property.Id.Equals(Constants.ExecutionIdPropertyIdentifier)); 355TestProperty? testTypeProperty = testResult.Properties.FirstOrDefault(property => property.Id.Equals(Constants.TestTypePropertyIdentifier));
Microsoft.VisualStudio.TestPlatform.ObjectModel (12)
TestCase.cs (2)
226return property.Id switch 246switch (property.Id)
TestObject.cs (1)
48property.Key.Id,
TestProperty\TestProperty.cs (7)
132return Id.GetHashCode(); 144return (other != null) && (Id == other.Id); 152return Id; 236System.Diagnostics.Debug.WriteLine("The test property type " + typeName + " of property " + Id + "is not supported."); 378var registeredProperty = Find(Id); 380Id,
TestResult.cs (2)
178return property.Id switch 198switch (property.Id)
vstest.console (2)
Internal\ConsoleLogger.cs (2)
383property.Id.Equals(ParentExecutionIdPropertyIdentifier)); 397property.Id.Equals(ExecutionIdPropertyIdentifier));
vstest.console.arm64 (2)
src\vstest\src\vstest.console\Internal\ConsoleLogger.cs (2)
383property.Id.Equals(ParentExecutionIdPropertyIdentifier)); 397property.Id.Equals(ExecutionIdPropertyIdentifier));