1 write to Work
Microsoft.TestPlatform.CrossPlatEngine (1)
Client\Parallel\ParallelProxyExecutionManager.cs (1)
479Work = work;
10 references to Work
Microsoft.TestPlatform.CrossPlatEngine (10)
Client\Parallel\ParallelOperationManager.cs (2)
150var manager = _createNewManager(workload.Provider, workload.Work); 153reserved.Add((manager, eventHandler, workload.Work));
Client\Parallel\ParallelProxyDiscoveryManager.cs (4)
87_availableTestSources = workloads.SelectMany(w => w.Work.Sources).Count(); 107_dataAggregator.MarkSourcesWithStatus(nonRunnableWorkloads.SelectMany(w => w.Work.Sources), DiscoveryStatus.SkippedDiscovery); 225sourceBatches = [group.Select(w => w.Work).ToArray()]; 230sourceBatches = group.Select(w => new[] { w.Work }).ToList();
Client\Parallel\ParallelProxyExecutionManager.cs (4)
251testCaseBatches = [group.SelectMany(w => sourceToTestCasesMap[w.Work]).ToArray()]; 257testCaseBatches = group.Select(w => sourceToTestCasesMap[w.Work]).ToList(); 309sourceBatches = [group.Select(w => w.Work).ToArray()]; 314sourceBatches = group.Select(w => new[] { w.Work }).ToList();