1 write to FilterRegEx
Microsoft.TestPlatform.CommunicationUtilities (1)
_generated\34\TestPlatformJsonContext.FilterOptions.g.cs (1)
61Setter = static (obj, value) => ((global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions)obj).FilterRegEx = value!,
8 references to FilterRegEx
Microsoft.TestPlatform.CommunicationUtilities (2)
_generated\34\TestPlatformJsonContext.FilterOptions.g.cs (2)
60Getter = static obj => ((global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions)obj).FilterRegEx, 108writer.WriteString(PropName_FilterRegEx, ((global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions)value).FilterRegEx);
Microsoft.VisualStudio.TestPlatform.Common (2)
src\vstest\src\Microsoft.TestPlatform.Filter.Source\FilterExpressionWrapper.cs (2)
78var regexString = options?.FilterRegEx; 81TPDebug.Assert(options!.FilterRegExReplacement == null || options.FilterRegEx != null);
Microsoft.VisualStudio.TestPlatform.ObjectModel (4)
Client\FilterOptions.cs (4)
36FilterRegEx ?? string.Empty, 43string.Equals(FilterRegEx, other.FilterRegEx) && 54var hashCode = FilterRegEx?.GetHashCode() ?? 0;