1 write to Work
Microsoft.TestPlatform.CrossPlatEngine (1)
Client\Parallel\ParallelProxyExecutionManager.cs (1)
518Work = work;
10 references to Work
Microsoft.TestPlatform.CrossPlatEngine (10)
Client\Parallel\ParallelOperationManager.cs (2)
160var manager = _createNewManager(workload.Provider, workload.Work); 165slot.Work = 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)
264testCaseBatches = [group.SelectMany(w => sourceToTestCasesMap[w.Work]).ToArray()]; 270testCaseBatches = group.Select(w => sourceToTestCasesMap[w.Work]).ToList(); 322sourceBatches = [group.Select(w => w.Work).ToArray()]; 327sourceBatches = group.Select(w => new[] { w.Work }).ToList();