3 writes to TestCaseFilterValue
vstest.console (3)
Processors\RunSettingsArgumentProcessor.cs (1)
136_commandLineOptions.TestCaseFilterValue = testCaseFilter;
Processors\TestCaseFilterArgumentProcessor.cs (2)
106_commandLineOptions.TestCaseFilterValue = argument; 111_commandLineOptions.TestCaseFilterValue = $"({defaultFilter})&({argument})";
7 references to TestCaseFilterValue
vstest.console (7)
Processors\ListFullyQualifiedTestsArgumentProcessor.cs (1)
238TestCaseFilter.Initialize(_options.TestCaseFilterValue);
Processors\RunSpecificTestsArgumentProcessor.cs (2)
253var runRequestPayload = new TestRunRequestPayload() { TestCases = _selectedTestCases.ToList(), RunSettings = _effectiveRunSettings, KeepAlive = keepAlive, TestPlatformOptions = new TestPlatformOptions() { TestCaseFilter = _commandLineOptions.TestCaseFilterValue } }; 376if (!testsFoundInAnySource && !_commandLineOptions.TestAdapterPathsSet && _commandLineOptions.TestCaseFilterValue == null)
Processors\RunTestsArgumentProcessor.cs (2)
185var runRequestPayload = new TestRunRequestPayload() { Sources = _commandLineOptions.Sources.ToList(), RunSettings = runSettings, KeepAlive = keepAlive, TestPlatformOptions = new TestPlatformOptions() { TestCaseFilter = _commandLineOptions.TestCaseFilterValue } }; 236if (!testsFoundInAnySource && !_commandLineOptions.TestAdapterPathsSet && _commandLineOptions.TestCaseFilterValue == null)
Processors\TestCaseFilterArgumentProcessor.cs (1)
96var defaultFilter = _commandLineOptions.TestCaseFilterValue;
TestPlatformHelpers\TestRequestManager.cs (1)
258TestCaseFilter = _commandLineOptions.TestCaseFilterValue