3 writes to TestCaseFilterValue
vstest.console (3)
Processors\RunSettingsArgumentProcessor.cs (1)
124_commandLineOptions.TestCaseFilterValue = testCaseFilter;
Processors\TestCaseFilterArgumentProcessor.cs (2)
100_commandLineOptions.TestCaseFilterValue = argument; 105_commandLineOptions.TestCaseFilterValue = $"({defaultFilter})&({argument})";
7 references to TestCaseFilterValue
vstest.console (7)
Processors\ListFullyQualifiedTestsArgumentProcessor.cs (1)
229TestCaseFilter.Initialize(_options.TestCaseFilterValue);
Processors\RunSpecificTestsArgumentProcessor.cs (2)
244var runRequestPayload = new TestRunRequestPayload() { TestCases = _selectedTestCases.ToList(), RunSettings = _effectiveRunSettings, KeepAlive = keepAlive, TestPlatformOptions = new TestPlatformOptions() { TestCaseFilter = _commandLineOptions.TestCaseFilterValue } }; 365if (!testsFoundInAnySource && !CommandLineOptions.Instance.TestAdapterPathsSet && _commandLineOptions.TestCaseFilterValue == null)
Processors\RunTestsArgumentProcessor.cs (2)
176var runRequestPayload = new TestRunRequestPayload() { Sources = _commandLineOptions.Sources.ToList(), RunSettings = runSettings, KeepAlive = keepAlive, TestPlatformOptions = new TestPlatformOptions() { TestCaseFilter = _commandLineOptions.TestCaseFilterValue } }; 225if (!testsFoundInAnySource && !CommandLineOptions.Instance.TestAdapterPathsSet && _commandLineOptions.TestCaseFilterValue == null)
Processors\TestCaseFilterArgumentProcessor.cs (1)
90var defaultFilter = _commandLineOptions.TestCaseFilterValue;
TestPlatformHelpers\TestRequestManager.cs (1)
236TestCaseFilter = _commandLineOptions.TestCaseFilterValue