14 references to Sources
vstest.console.arm64 (14)
parent\vstest.console\Internal\ConsoleLogger.cs (2)
429Output.WriteLine(string.Format(CultureInfo.CurrentCulture, CommandLineResources.TestSourcesDiscovered, commandLineOptions.Sources.Count()), OutputLevel.Information); 432foreach (var source in commandLineOptions.Sources)
parent\vstest.console\Processors\ListFullyQualifiedTestsArgumentProcessor.cs (2)
177if (!_commandLineOptions.Sources.Any()) 190new DiscoveryRequestPayload { Sources = _commandLineOptions.Sources, RunSettings = runSettings },
parent\vstest.console\Processors\ListTestsArgumentProcessor.cs (2)
181if (!_commandLineOptions.Sources.Any()) 195new DiscoveryRequestPayload() { Sources = _commandLineOptions.Sources, RunSettings = runSettings },
parent\vstest.console\Processors\RunSpecificTestsArgumentProcessor.cs (3)
195if (!_commandLineOptions.Sources.Any()) 203DiscoverTestsAndSelectSpecified(_commandLineOptions.Sources); 267warningMessage = string.Format(CultureInfo.CurrentCulture, CommandLineResources.NoTestsAvailableInSources, string.Join(", ", _commandLineOptions.Sources));
parent\vstest.console\Processors\RunTestsArgumentProcessor.cs (3)
147var anySource = _commandLineOptions.Sources.FirstOrDefault(); 165if (_commandLineOptions.Sources.Any()) 185var runRequestPayload = new TestRunRequestPayload() { Sources = _commandLineOptions.Sources.ToList(), RunSettings = runSettings, KeepAlive = keepAlive, TestPlatformOptions = new TestPlatformOptions() { TestCaseFilter = _commandLineOptions.TestCaseFilterValue } };
parent\vstest.console\TestPlatformHelpers\TestRequestManager.cs (2)
790if (_commandLineOptions.Sources.Any()) 794_commandLineOptions.Sources,