7 references to _testUidToResults
dotnet (7)
Commands\Test\MTP\Terminal\TestProgressState.cs (7)
26/// Combined with the final tally in <see cref="_testUidToResults"/> this yields the "flaky" set (failed at least 254if (_testUidToResults.TryGetValue(testNodeUid, out var value)) 267_testUidToResults[testNodeUid] = incrementTestNodeInfoEntry(value); 286_testUidToResults[testNodeUid] = incrementTestNodeInfoEntry((Passed: 0, Skipped: 0, Failed: 0, LastAttemptNumber: currentAttemptNumber, Attempts: value.Attempts + 1)); 295_testUidToResults.Add(testNodeUid, incrementTestNodeInfoEntry((Passed: 0, Skipped: 0, Failed: 0, LastAttemptNumber: currentAttemptNumber, Attempts: 1))); 386flaky.Add((entry.Value, _testUidToResults[entry.Key].Attempts)); 401=> _testUidToResults.TryGetValue(testNodeUid, out TestNodeInfoEntry entry)