14 references to Sources
vstest.console (14)
Internal\ConsoleLogger.cs (2)
418Output.WriteLine(string.Format(CultureInfo.CurrentCulture, CommandLineResources.TestSourcesDiscovered, CommandLineOptions.Instance.Sources.Count()), OutputLevel.Information); 421foreach (var source in CommandLineOptions.Instance.Sources)
Processors\ListFullyQualifiedTestsArgumentProcessor.cs (2)
168if (!_commandLineOptions.Sources.Any()) 181new DiscoveryRequestPayload { Sources = _commandLineOptions.Sources, RunSettings = runSettings },
Processors\ListTestsArgumentProcessor.cs (2)
172if (!_commandLineOptions.Sources.Any()) 186new DiscoveryRequestPayload() { Sources = _commandLineOptions.Sources, RunSettings = runSettings },
Processors\RunSpecificTestsArgumentProcessor.cs (3)
186if (!_commandLineOptions.Sources.Any()) 194DiscoverTestsAndSelectSpecified(_commandLineOptions.Sources); 258warningMessage = string.Format(CultureInfo.CurrentCulture, CommandLineResources.NoTestsAvailableInSources, string.Join(", ", _commandLineOptions.Sources));
Processors\RunTestsArgumentProcessor.cs (3)
138var anySource = _commandLineOptions.Sources.FirstOrDefault(); 156if (_commandLineOptions.Sources.Any()) 176var runRequestPayload = new TestRunRequestPayload() { Sources = _commandLineOptions.Sources.ToList(), RunSettings = runSettings, KeepAlive = keepAlive, TestPlatformOptions = new TestPlatformOptions() { TestCaseFilter = _commandLineOptions.TestCaseFilterValue } };
TestPlatformHelpers\TestRequestManager.cs (2)
919if (_commandLineOptions.Sources.Any()) 923_commandLineOptions.Sources,