2 writes to Name
Microsoft.TestPlatform.CommunicationUtilities (1)
_generated\67\TestPlatformJsonContext.Trait.g.cs (1)
61Setter = static (obj, value) => ((global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Trait)obj).Name = value!,
Microsoft.VisualStudio.TestPlatform.ObjectModel (1)
Trait.cs (1)
33Name = name ?? throw new ArgumentNullException(nameof(name));
11 references to Name
Microsoft.TestPlatform.CommunicationUtilities (2)
_generated\67\TestPlatformJsonContext.Trait.g.cs (2)
60Getter = static obj => ((global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Trait)obj).Name, 112writer.WriteString(PropName_Name, ((global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Trait)value).Name);
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (2)
Utility\Converter.cs (2)
563Trait? priorityTrait = rockSteadyTestCase.Traits?.FirstOrDefault(t => t.Name.Equals("Priority")); 579Trait? ownerTrait = rockSteadyTestCase.Traits?.FirstOrDefault(t => t.Name.Equals("Owner"));
Microsoft.VisualStudio.TestPlatform.ObjectModel (1)
TraitCollection.cs (1)
86var newPairs = newValue.Select(t => new KeyValuePair<string, string>(t.Name, t.Value)).ToArray();
vstest.console (3)
Processors\ListFullyQualifiedTestsArgumentProcessor.cs (3)
374if (!traitDictionary.TryGetValue(trait.Name, out List<string>? currentTraitValue)) 377traitDictionary.Add(trait.Name, newTraitValueList); 384traitDictionary[trait.Name] = newTraitValueList;
vstest.console.arm64 (3)
src\vstest\src\vstest.console\Processors\ListFullyQualifiedTestsArgumentProcessor.cs (3)
374if (!traitDictionary.TryGetValue(trait.Name, out List<string>? currentTraitValue)) 377traitDictionary.Add(trait.Name, newTraitValueList); 384traitDictionary[trait.Name] = newTraitValueList;