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)
131
if (
_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;