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