17 references to _discoveryDataAggregator
Microsoft.TestPlatform.CrossPlatEngine (17)
Discovery\DiscoveryManager.cs (17)
120
_discoveryDataAggregator
.MarkSourcesWithStatus(verifiedSources, DiscoveryStatus.NotDiscovered);
161
_previousSource =
_discoveryDataAggregator
.MarkSourcesBasedOnDiscoveredTestCases(_previousSource, lastChunk);
162
_discoveryDataAggregator
.MarkAsAborted();
168
_discoveryDataAggregator
.MarkSourcesWithStatus(lastChunk?.Select(x => x.Source), DiscoveryStatus.FullyDiscovered);
169
_discoveryDataAggregator
.MarkSourcesWithStatus(
_discoveryDataAggregator
.GetSourcesWithStatus(DiscoveryStatus.NotDiscovered), DiscoveryStatus.FullyDiscovered);
170
_discoveryDataAggregator
.MarkSourcesWithStatus(
_discoveryDataAggregator
.GetSourcesWithStatus(DiscoveryStatus.PartiallyDiscovered), DiscoveryStatus.FullyDiscovered);
176
FullyDiscoveredSources =
_discoveryDataAggregator
.GetSourcesWithStatus(DiscoveryStatus.FullyDiscovered),
177
PartiallyDiscoveredSources =
_discoveryDataAggregator
.GetSourcesWithStatus(DiscoveryStatus.PartiallyDiscovered),
178
NotDiscoveredSources =
_discoveryDataAggregator
.GetSourcesWithStatus(DiscoveryStatus.NotDiscovered),
179
SkippedDiscoveredSources =
_discoveryDataAggregator
.GetSourcesWithStatus(DiscoveryStatus.SkippedDiscovery),
216
FullyDiscoveredSources =
_discoveryDataAggregator
.GetSourcesWithStatus(DiscoveryStatus.FullyDiscovered),
217
PartiallyDiscoveredSources =
_discoveryDataAggregator
.GetSourcesWithStatus(DiscoveryStatus.PartiallyDiscovered),
218
NotDiscoveredSources =
_discoveryDataAggregator
.GetSourcesWithStatus(DiscoveryStatus.NotDiscovered),
219
SkippedDiscoveredSources =
_discoveryDataAggregator
.GetSourcesWithStatus(DiscoveryStatus.SkippedDiscovery),
231
_previousSource =
_discoveryDataAggregator
.MarkSourcesBasedOnDiscoveredTestCases(_previousSource, testCases);