5 writes to TestCaseFilter
Microsoft.TestPlatform.CommunicationUtilities (1)
_generated\43\TestPlatformJsonContext.TestPlatformOptions.g.cs (1)
61Setter = static (obj, value) => ((global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions)obj).TestCaseFilter = value!,
vstest.console (2)
Processors\RunSpecificTestsArgumentProcessor.cs (1)
244var runRequestPayload = new TestRunRequestPayload() { TestCases = _selectedTestCases.ToList(), RunSettings = _effectiveRunSettings, KeepAlive = keepAlive, TestPlatformOptions = new TestPlatformOptions() { TestCaseFilter = _commandLineOptions.TestCaseFilterValue } };
Processors\RunTestsArgumentProcessor.cs (1)
176var runRequestPayload = new TestRunRequestPayload() { Sources = _commandLineOptions.Sources.ToList(), RunSettings = runSettings, KeepAlive = keepAlive, TestPlatformOptions = new TestPlatformOptions() { TestCaseFilter = _commandLineOptions.TestCaseFilterValue } };
vstest.console.arm64 (2)
src\vstest\src\vstest.console\Processors\RunSpecificTestsArgumentProcessor.cs (1)
244var runRequestPayload = new TestRunRequestPayload() { TestCases = _selectedTestCases.ToList(), RunSettings = _effectiveRunSettings, KeepAlive = keepAlive, TestPlatformOptions = new TestPlatformOptions() { TestCaseFilter = _commandLineOptions.TestCaseFilterValue } };
src\vstest\src\vstest.console\Processors\RunTestsArgumentProcessor.cs (1)
176var runRequestPayload = new TestRunRequestPayload() { Sources = _commandLineOptions.Sources.ToList(), RunSettings = runSettings, KeepAlive = keepAlive, TestPlatformOptions = new TestPlatformOptions() { TestCaseFilter = _commandLineOptions.TestCaseFilterValue } };
4 references to TestCaseFilter
Microsoft.TestPlatform.CommunicationUtilities (2)
_generated\43\TestPlatformJsonContext.TestPlatformOptions.g.cs (2)
60Getter = static obj => ((global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions)obj).TestCaseFilter, 148writer.WriteString(PropName_TestCaseFilter, ((global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions)value).TestCaseFilter);
vstest.console (1)
TestPlatformHelpers\TestRequestManager.cs (1)
375testRunRequestPayload.TestPlatformOptions?.TestCaseFilter,
vstest.console.arm64 (1)
src\vstest\src\vstest.console\TestPlatformHelpers\TestRequestManager.cs (1)
375testRunRequestPayload.TestPlatformOptions?.TestCaseFilter,