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)
106bool isAlreadyInProgress = _testCaseInProgressMap.TryGetValue(testCase.Id, out int count); 112_testCaseInProgressMap[testCase.Id] = isAlreadyInProgress ? count + 1 : 1; 177if (!_testCaseInProgressMap.TryGetValue(testCase.Id, out int count)) 191_testCaseInProgressMap.Remove(testCase.Id); 195_testCaseInProgressMap[testCase.Id] = count - 1;