1 write to Name
Microsoft.VisualStudio.TestPlatform.ObjectModel (1)
Trait.cs (1)
33Name = name ?? throw new ArgumentNullException(nameof(name));
9 references to 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;