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