1 write to _testCaseEndCalledMap
Microsoft.TestPlatform.CrossPlatEngine (1)
Adapter\TestExecutionRecorder.cs (1)
78_testCaseEndCalledMap = new Dictionary<TestCase, int>(TestCaseReferenceComparer.Instance);
5 references to _testCaseEndCalledMap
Microsoft.TestPlatform.CrossPlatEngine (5)
Adapter\TestExecutionRecorder.cs (5)
131if (_testCaseEndCalledMap.TryGetValue(testResult.TestCase, out int endCount)) 135_testCaseEndCalledMap.Remove(testResult.TestCase); 139_testCaseEndCalledMap[testResult.TestCase] = endCount - 1; 186_testCaseEndCalledMap[testCase] = _testCaseEndCalledMap.TryGetValue(testCase, out int endCount) ? endCount + 1 : 1;