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