14 references to Sources
vstest.console.arm64 (14)
parent\vstest.console\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
)
parent\vstest.console\Processors\ListFullyQualifiedTestsArgumentProcessor.cs (2)
177
if (!_commandLineOptions.
Sources
.Any())
190
new DiscoveryRequestPayload { Sources = _commandLineOptions.
Sources
, RunSettings = runSettings },
parent\vstest.console\Processors\ListTestsArgumentProcessor.cs (2)
181
if (!_commandLineOptions.
Sources
.Any())
195
new DiscoveryRequestPayload() { Sources = _commandLineOptions.
Sources
, RunSettings = runSettings },
parent\vstest.console\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
));
parent\vstest.console\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 } };
parent\vstest.console\TestPlatformHelpers\TestRequestManager.cs (2)
790
if (_commandLineOptions.
Sources
.Any())
794
_commandLineOptions.
Sources
,