14 references to Sources
vstest.console (14)
Internal\ConsoleLogger.cs (2)
429Output.WriteLine(string.Format(CultureInfo.CurrentCulture, CommandLineResources.TestSourcesDiscovered, commandLineOptions.Sources.Count()), OutputLevel.Information); 432foreach (var source in commandLineOptions.Sources)
Processors\ListFullyQualifiedTestsArgumentProcessor.cs (2)
177if (!_commandLineOptions.Sources.Any()) 190new DiscoveryRequestPayload { Sources = _commandLineOptions.Sources, RunSettings = runSettings },
Processors\ListTestsArgumentProcessor.cs (2)
181if (!_commandLineOptions.Sources.Any()) 195new DiscoveryRequestPayload() { Sources = _commandLineOptions.Sources, RunSettings = runSettings },
Processors\RunSpecificTestsArgumentProcessor.cs (3)
195if (!_commandLineOptions.Sources.Any()) 203DiscoverTestsAndSelectSpecified(_commandLineOptions.Sources); 267warningMessage = string.Format(CultureInfo.CurrentCulture, CommandLineResources.NoTestsAvailableInSources, string.Join(", ", _commandLineOptions.Sources));
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 } };
TestPlatformHelpers\TestRequestManager.cs (2)
790if (_commandLineOptions.Sources.Any()) 794_commandLineOptions.Sources,