1 write to _testCaseInProgressMap
Microsoft.TestPlatform.CrossPlatEngine (1)
Adapter\TestExecutionRecorder.cs (1)
77
_testCaseInProgressMap
= new Dictionary<Guid, int>();
5 references to _testCaseInProgressMap
Microsoft.TestPlatform.CrossPlatEngine (5)
Adapter\TestExecutionRecorder.cs (5)
106
bool isAlreadyInProgress =
_testCaseInProgressMap
.TryGetValue(testCase.Id, out int count);
112
_testCaseInProgressMap
[testCase.Id] = isAlreadyInProgress ? count + 1 : 1;
177
if (!
_testCaseInProgressMap
.TryGetValue(testCase.Id, out int count))
191
_testCaseInProgressMap
.Remove(testCase.Id);
195
_testCaseInProgressMap
[testCase.Id] = count - 1;